shithub: mc

ref: 44e5ed3ebbb9c3a8e5e5d809e0f5a6991c4b9570
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))
}