shithub: mc

ref: 3321a6568822c6278aa4e85845592596521a523f
dir: /libstd/option.myr/

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