shithub: mc

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