shithub: mc

ref: 3324a15b63cd10f880308623cfc27c69b3ed3c59
dir: /test/doublecall.myr/

View raw version
use std

const main = {
	std.put("%i,%w\n", a(), b())
}

const a = {
	-> 42
}

const b = {
	-> 33 castto(int16)
}