shithub: mc

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