shithub: mc

ref: 8a57984a3b3102a30ca6210f7b73dc523f620377
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	std.exit(foo(42))
}