shithub: mc

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