shithub: mc

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