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