shithub: mc

ref: 22dfaa6b4c03222803ae97cf4ff9401788b5d4ea
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))
}