Help for this page

Select Code to Download


  1. or download this
        "Class::Next=HASH(0xdeadbeef)"->new()
    
  2. or download this
        sub new {
            my $class= shift(@_);
    ...
                if  ref $class;
            # ...
        }
    
  3. or download this
      sub new { bless {}, ref $_[0] || $_[0]; }
    
  4. or download this
     
     sub new { croak "new takes class" if ref $_[0]; bless {}, $_[0]; }
    
  5. or download this
    
        Can't locate object method "twirl" via package "Bar=ARRAY(0xbadd0g
    +5)"