shithub: mc

ref: 68b18a7fba8313ad5b1d8b4c6be61e3b8b126304
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))
}