shithub: mc

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