shithub: mc

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