shithub: mc

ref: 954ff1977d4345d53a0e1996c7c3b39c51a2d470
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}