shithub: mc

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

View raw version
use std

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

const a = {
	-> 42
}

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