shithub: mc

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