shithub: mc

ref: 1877918ac3ebf4ca955a0956a1067139c06efb7c
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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