shithub: mc

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