shithub: mc

ref: 97602e57fcd2bba52c50454f15cf07a97adf7342
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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