shithub: mc

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