shithub: mc

ref: 100ed8406343f027aa442e79fe59c653c8fc02a4
dir: /lib/std/option.myr/

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