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