shithub: mc

ref: 96203fff1cc3c06bea79801d9af38c40e556d74a
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))
}