shithub: mc

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