shithub: mc

ref: 5f908a4b24cde049374c0922bce3cc067ab216dc
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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