shithub: mc

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