shithub: mc

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

View raw version
use std

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

const a = {
	-> 42
}

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