shithub: mc

ref: 97342365dc551b4ef0c07fe092f74abc8bf1b063
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}