shithub: mc

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