shithub: mc

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