shithub: mc

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