shithub: mc

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