shithub: mc

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

View raw version
use std

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

const a = {
	-> 42
}

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