shithub: mc

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