shithub: mc

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