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