shithub: mc

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