shithub: mc

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