shithub: mc

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

View raw version
use std

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

const a = {
	-> 42
}

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