shithub: mc

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