shithub: mc

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

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