shithub: mc

ref: 231b0fd0e1e70376bcf747a797a76b07521987b7
dir: /test/exportmain.myr/

View raw version
use std

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


const foo = {val
	-> val
}

const main = {
	-> foo(42)
}