shithub: mc

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