shithub: mc

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