shithub: mc

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

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