shithub: mc

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