shithub: mc

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