shithub: mc

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