shithub: mc

ref: 80f1e8ed2ff1a49b39ad424f388f10d434766e43
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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