shithub: mc

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