Regen files for mainline.
[p5sagit/p5-mst-13.2.git] / pod / perlmod.pod
index a9a8756..6f98cf6 100644 (file)
@@ -310,6 +310,10 @@ create a file called F<Some/Module.pm> and start with this template:
     }
     our @EXPORT_OK;
 
+    # exported package globals go here
+    our $Var1;
+    our %Hashit;
+
     # non-exported package globals go here
     our @more;
     our $stuff;