Help for this page

Select Code to Download


  1. or download this
    sub readfile {
        my $filename = shift or return;
        ...
    }
    
  2. or download this
    my $filename = shift;
    return unless(defined $filename && $filename ne '');
    
  3. or download this
    my $filename = shift or return;