shithub: mc

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