shithub: mc

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