shithub: mc

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