shithub: mc

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