shithub: mc

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