shithub: mc

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