shithub: mc

ref: 0f469133aed044569f4d6ae9efc1d961124c05cd
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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