shithub: mc

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

View raw version
use std

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

const a = {
	-> 42
}

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