shithub: mc

ref: 0e987e21af03dccfe1b37141ca024f657238dfd2
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}