shithub: mc

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