shithub: mc

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