String Character Length: Difference between revisions

Content added Content deleted
(Handling encoded strings)
(LSE64)
Line 246: Line 246:
//Store length of hello world in length and print it
//Store length of hello world in length and print it
. length = "Hello World".length();
. 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]]==
==[[Lua]]==