shithub: mc

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