shithub: mc

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