shithub: mc

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