shithub: mc

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