shithub: mc

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