shithub: mc

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