📅  最后修改于: 2022-03-11 14:54:55.159000             🧑  作者: Mango
-- One can get the length of a string by using the # (length) operator.
-- The metamethod for this operator is __len.
local str = "Hello world!";
print(#str); -- 5