shithub: mc

ref: 037c644bc26ee88d2fd2b0c9988bbcbdeaf46659
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))
}