shithub: mc

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