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