shithub: mc

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