shithub: mc

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