shithub: mc

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