shithub: mc

ref: 204b05d910ebcaec8af1fe62e8bbd19f3f41932a
dir: /lib/std/option.myr/

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