Help for this page

Select Code to Download


  1. or download this
    # instead of
    my $class = shift;
    my $self = bless {}, ref($class) || $class;
    # try
    my $self = bless {}, ref($_[0]) || @_
    
  2. or download this
    sub foo {
       # some stuff
       open my $fh, @_;
       return $fh;
    }
    
  3. or download this
    sub foo {
       # some stuff
    ...
       }
       return $fh;
    }