shithub: mc

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