shithub: mc

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