shithub: mc

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

View raw version
use std

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

const a = {
	-> 42
}

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