shithub: mc

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