shithub: mc

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