shithub: mc

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

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