shithub: mc

ref: 321aec6bf2b82698196a94725e37cee135b1fe2b
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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