shithub: mc

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