shithub: mc

ref: 492aca3ff6f829ee09c52e17c86a808430ee7df4
dir: /lib/std/option.myr/

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