shithub: mc

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