shithub: mc

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