shithub: mc

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