shithub: mc

ref: 79dc395602898b5f95d701c7650b81d6b5737038
dir: /test/doublecall.myr/

View raw version
use std

const main = {
	std.put("{},{}\n", a(), b())
}

const a = {
	-> 42
}

const b = {
	-> 33 castto(int16)
}