shithub: mc

ref: 2b1c13ce2d20ce2b4e68e1daf08a1679d94fe397
dir: /test/str.myr/

View raw version
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))
}