shithub: mc

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