shithub: mc

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