shithub: mc

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