shithub: mc

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