shithub: mc

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