shithub: mc

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

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