shithub: mc

ref: d21343766fc75075e9246b386b60e264bfd1860e
dir: /lib/std/option.myr/

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