shithub: mc

ref: 3ac4d72f007d089e96b5f06068338cb48c5521df
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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