shithub: mc

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

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