shithub: mc

ref: 15b5fb5c0f9fee25b01a245229efcef21c103bdc
dir: /lib/std/option.myr/

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