ref: 6538ea2c5b4daf1fc325144fbb0c9bc779ba3130 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)) }