shithub: mc

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