shithub: mc

ref: ee4f263f0c410a8e1061ff704054f8707cb0cb0c
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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