shithub: mc

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