shithub: mc

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