shithub: mc

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