shithub: mc

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