shithub: mc

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