shithub: mc

ref: 8fda8a0adbb44f4e63bb86256d9f56700d79f301
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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