shithub: mc

ref: 228b30bfe204fc490e16eec6ba5484991a765074
dir: /lib/std/option.myr/

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