shithub: mc

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