shithub: mc

ref: 8e8d3f3d6f01046782529f853032daca2ab1976e
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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