shithub: mc

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