shithub: mc

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