shithub: mc

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