shithub: mc

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