Help for this page

Select Code to Download


  1. or download this
    my ( $self, $file ) = ( $_[0],
                            ( $_[0]->{file} = $_[1] || $_[0]->{file} ) );
    
  2. or download this
    my $self = shift;
    $self->{file} = shift || $self->{file};
    # or...
    $file = $self->{file} = shift || $self->{file};