shithub: mc

ref: 4696e9dc4fda1400c881f2177183da3b024633f1
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))
}