shithub: mc

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