shithub: mc

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