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