shithub: mc

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