shithub: mc

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

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