shithub: mc

ref: 30c662571c4f64f72171cca0efc7bedc59bd53fa
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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