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