shithub: mc

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