shithub: mc

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