shithub: mc

ref: b0b92f615f83d31f860044862592ea22cf925aaa
dir: /test/exportmain.myr/

View raw version
use std

pkg =
	const foo	: (val:int -> int)
;;


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}