shithub: mc

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