shithub: mc

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

View raw version
use std

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

const a = {
	-> 42
}

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