shithub: mc

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