shithub: mc

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