shithub: mc

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

View raw version
use std

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

const a = {
	-> 42
}

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