shithub: mc

ref: 2bf74b8f25a89c8a49e96e5e44ffd72f495e4930
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))
}