shithub: mc

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