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