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