shithub: mc

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