Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        return;
    }
    two(1,2,one(), 3);
    
  2. or download this
    $VAR1 = [1,2,undef,3];
    $VAR1 = [1,2,3];
    
  3. or download this
          sub read_file {
              my $file = shift;
    ...
    
              die "$filename not found";
          }
    
  4. or download this
          sub read_file {
              my $file = shift;
    ...
    
              #Continue reading file...
          }