shithub: mc

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