shithub: mc

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