shithub: mc

ref: caa2cd99e469f598d19a03f2ba4d3c23c6e9d6f5
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] castto(int))
}