shithub: mc

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