Help for this page

Select Code to Download


  1. or download this
        package Foo;
    
    ...
                # module for this.
            }
        }
    
  2. or download this
        Foo::->this;  # OK: this
        Foo::->that;  # OK: that
        Foo::->these; # Failure: these
    
  3. or download this
        package Foo::Bar;
        use base 'Foo';
    ...
                print "Failure: $m";
            }
        }
    
  4. or download this
        Foo::Bar::->hah; # OK: hah
        Foo::Bar::->heh; # OK: heh
        Foo::Bar::->hoh; # Failure: hoh
    
  5. or download this
        Foo::Bar::->this; # Failure: this
        Foo::Bar::->that; # Failure: that
    
  6. or download this
        package Foo::Bar;
        use base 'Foo';
    ...
                }
            }
        }
    
  7. or download this
        {
            package A;
    ...
                }
            }
        }
    
  8. or download this
        A::->xism; # OK: A::xism
        B::->yism; # OK: B::yism
    
  9. or download this
        package AB;
        use base 'A', 'B';
    
  10. or download this
        AB::->xism; # OK: AB::xism
        AB::->yism; # Failure: AB::yism