shithub: mc

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