shithub: mc

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