shithub: mc

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