Help for this page

Select Code to Download


  1. or download this
    my $foo = Class->new( this => 2, that => 3 );
    my $bar = Class::new( $foo => 4, that => 5 );
    
  2. or download this
    package Class;
    
    ...
        unless $_[0]->isa(__PACKAGE__);
      # rest of code...
    }