shithub: mc

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