shithub: mc

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

View raw version
use std

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

const a = {
	-> 42
}

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