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