shithub: mc

ref: b33507bdac290ffd2792dafeb7b73f81cb4cda8d
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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