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