shithub: mc

ref: 48199f4097a5a60fcf4064b1ffada4be71ea233f
dir: /libstd/option.myr/

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