shithub: mc

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

View raw version
use std

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

const a = {
	-> 42
}

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