shithub: mc

ref: 4f1ea224da009a6174db526eabb4ddb3fdac5558
dir: /libstd/option.myr/

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