in reply to Re: How to skip a step in perldebug?
in thread How to skip a step in perldebug?
I wish to replace line 3 with1: while (<STDIN>) { 2: push(@F, $_); 3==> shift(@F) if $. > 10; 4 }
instead. This modification still results in valid code.shift(@F) if $. > 10; }{ print @F;
|
|---|