shithub: mc

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