shithub: mc

ref: 6d7e87f1599c3af33dc52d9867b60d845441f760
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)
}