shithub: mc

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