in reply to Re^4: Question on "Effective Perl Programming" (intervene)
in thread Question on "Effective Perl Programming"
my $worked = eval {stuff}; if ($worked) { print "Yay!"; } else { print "Boo!: $@"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Question on "Effective Perl Programming" (intervene)
by runrig (Abbot) on Sep 08, 2007 at 21:22 UTC | |
|
Re^6: Question on "Effective Perl Programming" (intervene)
by kyle (Abbot) on Sep 08, 2007 at 21:39 UTC | |
by tye (Sage) on Sep 08, 2007 at 23:03 UTC |