RosettaCodeData/Task/Variable-size-Get/Lua/variable-size-get.lua

7 lines
62 B
Lua

> s = "hello"
> print(#s)
5
> t = { 1,2,3,4,5 }
> print(#t)
5