shithub: mc

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

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}