shithub: mc

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