shithub: mc

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