shithub: mc

ref: 64a7a7346e02999cf451ee45220b86ba7c69c56f
dir: /lib/std/option.myr/

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