shithub: mc

ref: ca5cfce97b1a41ab70a983117e9ecf8fc605c5d2
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] castto(int))
}