shithub: mc

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