shithub: mc

ref: 1342e9853431adbf651c5a867396c02f87d51144
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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