shithub: mc

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