Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    close $fh;
    my $status = $? >> 8;
    print "$status\n";
    
  2. or download this
    Hello
    1
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    ...
    close $fh;
    my $status = $? >> 8;
    print "$status\n";
    
  4. or download this
    Hello
    Can't close(GLOB(0x10082a098)) filehandle: '' at test.pl line 7
    
  5. or download this
    use strict;
    use autodie;
    ...
    #close $fh;
    my $status = $? >> 8;
    print "$status\n";
    
  6. or download this
    Hello
    0
    
  7. or download this
    use strict;
    use autodie;
    ...
     close $fh;}
    my $status = $? >> 8;
    print "$status\n";
    
  8. or download this
    Hello
    1