shithub: mc

ref: 76fc43acecea75b362d7e56557a0466cbda94572
dir: /lib/std/option.myr/

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