shithub: mc

ref: ea067be32dd52602d1f36051e51baefe01135aa3
dir: /lib/std/option.myr/

View raw version
pkg std =
	type option(@a) = union
		`None
		`Some @a
	;;
;;