shithub: mc

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