shithub: mc

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