shithub: mc

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