shithub: mc

ref: 137d0b96baa72f12a83e60f6b507f81a9a3bee4c
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}