shithub: mc

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