shithub: mc

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