shithub: mc

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