ref: e3682d0bb7437dc3cbb6a6fcf8d82806d98c73da 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] : int)) }