shithub: mc

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