shithub: mc

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