shithub: mc

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