shithub: mc

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

View raw version
use std

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

const a = {
	-> 42
}

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