shithub: mc

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