ref: 1bb9fd59499eb6fb7e8b56e4cee72365074d172e 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)) }