shithub: mc

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