shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}