shithub: mc

ref: 63c188f625c3939ab31231e3c6775ba72d37a00e
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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