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