shithub: mc

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