shithub: mc

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