shithub: mc

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

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