shithub: mc

ref: 3853fa79b7d297f4bd3aaf318a147a95dd088bc9
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))
}