in reply to Re^3: About a piece of code
in thread About a piece of code
if the code was like above, wouldnt the second "m/^\n/ and next;" line be executed?while (<input>) { m/^\n/ and next; m/^\n/ and next; ... }
Because you said "if the line that was read matches that condition, then you don't want to execute the rest of the code inside the while statement"
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: About a piece of code
by ww (Archbishop) on Aug 05, 2009 at 13:01 UTC | |
Re^5: About a piece of code
by Anonymous Monk on Aug 05, 2009 at 12:00 UTC |