shithub: mc

ref: 9369e24bf0f65400bd280575ea2d30feef3d4ba9
dir: /lib/std/option.myr/

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