shithub: mc

ref: 74a19268887ba997f0ebb65c0572f74f524db2e1
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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