shithub: mc

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