shithub: mc

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