shithub: mc

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