shithub: mc

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