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