shithub: mc

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