shithub: mc

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