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