shithub: mc

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