shithub: mc

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