shithub: mc

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