shithub: mc

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