shithub: mc

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