
LEN is a function that returns the count of characters of a string. LEN needs only a single argument that is the string which characters should be counted.
Printing out the length of "Hello"
outmode -2 let a$ = "hello" print len (a$) end
Internally, the C-library fucntion "strlen" is used.