shithub: mc

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