shithub: mc

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