shithub: mc

ref: 011368e3394ba7691d7f4f9ca61bebf82d53ecfc
dir: /test/doublecall.myr/

View raw version
use std

const main = {
	std.put("{},{}\n", a(), b())
}

const a = {
	-> 42
}

const b = {
	-> 33 castto(int16)
}