shithub: mc

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