shithub: mc

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