shithub: mc

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