lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


In http://www.lua.org/pil/20.html

I see "A program can create string literals and concatenate them. But it
cannot extract a substring, check its size, or examine its contents"

and yet if I have 

s="123"
print( #s )

I print 3

How is this not a contradiction?