ref: 011368e3394ba7691d7f4f9ca61bebf82d53ecfc 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)) }