shithub: mc

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