shithub: mc

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