shithub: mc

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

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