On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Is there a better way to get the characters of a string other than this?

each x in "str" x end
(+2)

I would probably use "split" with an empty string as the left argument:

  "" split "str"
("s","t","r")