shithub: mc

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