shithub: mc

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