![]() |
![]() |
8 Einträge, 1 Seite |
unlink <*.*> or die "can't delete files\n";
1
2
3
4
5
6
7
8
for(<*.*>){
if(unlink $_){
print $_," deletedt\n";
}
else{
print "can't delete ",$_,"\n";
}
}
unlink <*.*> or print "can't delete files\n";
unlink <*.*> or warn "can't delete files\n";
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
eval {
if ($x == 1) {
die "1\n";
}
else {
die "2\n";
}
};
if ($@) {
if ($@ eq "1\n") {
print "Exception1\n";
}
elsif ($@ eq "2\n") {
print "Exception2\n";
}
else {
....
}
}
1
2
3
4
5
6
7
8
use PException;
try {
throw( AnException->new() ) if $something;
throw( AnOtherException->new( [] ) )
unless $anotherthing;
}
catch AnException( sub { } ) ,
onfly AnOtherException( sub { } );
![]() |
![]() |
8 Einträge, 1 Seite |