shithub: mc

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