shithub: mc

ref: 20cea781b95e1a6c1fa2f6cd2bb6c05ec9a4480d
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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