shithub: mc

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