shithub: mc

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