in reply to Re^2: returning to a loop later on
in thread returning to a loop later on
Indeed, but you can't redo to a label that is not in labling the current scope:
FOO: { # scope 1 { # scope 2 redo FOO; # Ok } redo FOO; # Ok } { # scope 3 redo FOO; # Illegal }
Prints:
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: returning to a loop later on
by mreece (Friar) on Sep 07, 2006 at 03:58 UTC | |
by GrandFather (Saint) on Sep 07, 2006 at 04:50 UTC |