shithub: mc

ref: 009cb9bf1139d5ddda4e464734f53eeb4ec10d74
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))
}