shithub: mc

ref: c0c0b95a971cc5da839e7453ac3c7c069b5f20cd
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] : int))
}