in reply to Re^2: die through several evals
in thread die through several evals
... i'll stuck
Stuck where? Doing what?
I don't see anything getting "stuck"?:
sub mys{ print "??$_[0]??"; eval{ die 'bad stuff' if $_[0] eq 'die' }; };; print 'here'; eval{ mys( 'hello' ) }; print 'there'; eval{ mys( 'die' ) }; print 'over here';; here ??hello?? there ??die?? over here
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: die through several evals
by nyaapa (Novice) on Apr 24, 2013 at 17:33 UTC | |
by BrowserUk (Patriarch) on Apr 24, 2013 at 18:05 UTC | |
by nyaapa (Novice) on Apr 30, 2013 at 07:34 UTC | |
by BrowserUk (Patriarch) on Apr 30, 2013 at 08:30 UTC | |
by nyaapa (Novice) on Apr 30, 2013 at 09:00 UTC | |
|