ref: 1bf649bb8a77d72a5333d6290776b436c86e3134 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)) }