shithub: mc

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