shithub: mc

ref: 4ea133ddac02791432ad26864fbdad4f1d49120f
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}