shithub: mc

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

View raw version
use std

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

const a = {
	-> 42
}

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