shithub: mc

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

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