shithub: mc

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