shithub: mc

ref: 79bd9957c85b57f31089719c9715e66e99296bbc
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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