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