ref: daa3e93b17d5a3ba192da6b3a579fa00930b46dd dir: /test/str.myr/
use std /* checks that string literals are compiled correctly. exits with ascii 'f', ie, 102. */ const main = { var str str = "asdf" std.exit(str[3] castto(int)) }