shithub: mc

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