shithub: mc

ref: 74707c5daf432fe8310312021eb775e7a716dbe3
dir: /lib/std/option.myr/

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