shithub: mc

ref: 2b3703665ad5e6c602c35394404f46972bc90b8d
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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