shithub: mc

ref: 2c8775977321483c7a16b55c7884612f9f770e6a
dir: /lib/std/option.myr/

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