shithub: mc

ref: 359f5e7e727145aeebae62563afbbe031257ea21
dir: /lib/std/option.myr/

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