shithub: mc

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