Upgrade to Devel::PPPort 3.14
[p5sagit/p5-mst-13.2.git] / pod / perlboot.pod
index 6e3f5ac..55317c3 100644 (file)
@@ -253,6 +253,11 @@ The easiest is to just spell the package name out:
 
     @Cow::ISA = qw(Animal);
 
+Or declare it as package global variable:
+
+    package Cow;
+    our @ISA = qw(Animal);
+
 Or allow it as an implicitly named package variable:
 
     package Cow;