shithub: mc

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