shithub: mc

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