shithub: mc

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