shithub: mc

ref: 3df8885d396e1bc36fe25a329bc4e63400126ecf
dir: /test/doublecall.myr/

View raw version
use std

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

const a = {
	-> 42
}

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