shithub: mc

ref: 52af0fabaa1b7b36a1848f53b1abb4538dcebabc
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))
}