shithub: mc

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