Is there a better way to get the characters of a string other than this?
each x in "str" x end
I would probably use "split" with an empty string as the left argument:
"" split "str" ("s","t","r")