shithub: mc

ref: 45e91dd432edaa124a2699b5d35a3a86f6eedfad
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)
}