shithub: mc

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

View raw version
use std

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

const a = {
	-> 42
}

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