shithub: mc

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

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