shithub: mc

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

View raw version
use std

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

const a = {
	-> 42
}

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