shithub: mc

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