shithub: mc

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