shithub: mc

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