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