shithub: mc

ref: a9407d8bbc6edce694be614f4bfed8bd037c6862
dir: /test/exportmain.myr/

View raw version
use std

pkg =
	const foo	: (val:int -> int)
;;


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}