shithub: mc

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