shithub: mc

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