shithub: mc

ref: 2e89856cee5ff88161295f3ea0d200f72eb4d31f
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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