shithub: mc

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