shithub: mc

ref: 78da203b42b5084a7664e8773f418a4730184d53
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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