String Character Length: Difference between revisions

Content deleted Content added
Handling encoded strings
LSE64
Line 246:
//Store length of hello world in length and print it
. length = "Hello World".length();
 
=={{header|LSE64}}==
LSE uses counted strings: arrays of characters, where the first cell contains the number of characters in the string.
" Hello world" @ , # 11
 
==[[Lua]]==