shithub: mc

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