shithub: mc

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