shithub: mc

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