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