shithub: mc

ref: 41c790aa25a1457849e76fd748f10329e74ccd2c
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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