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