shithub: mc

ref: 473ce973528106273540303dc11f4726ee870c3c
dir: /lib/std/option.myr/

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