shithub: mc

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