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