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