Help for this page

Select Code to Download


  1. or download this
    sub woot
    {
    ...
       print __PACKAGE__, "\n"; # <-- prints "foo"
       print ref($self), "\n";  # <-- prints nothing
    }
    
  2. or download this
    sub woot
    {
    ...
       print __PACKAGE__, "\n"; # <-- prints "foo"
       print $self, "\n";       # <-- prints "bar"
    }