shithub: mc

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

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