Re: Clarification in continue statement

2015-02-06 Thread Infiltrator via Digitalmars-d-learn
On Friday, 6 February 2015 at 09:43:59 UTC, Rikki Cattermole wrote: On 6/02/2015 10:37 p.m., Vasileios Anagnostopoulos via Digitalmars-d-learn wrote: hi, I observed in the documentation "If continue is followed by /Identifier/, the /Identifier/ must be the label of an enclosing while, for, o

Re: Clarification in continue statement

2015-02-06 Thread Rikki Cattermole via Digitalmars-d-learn
On 6/02/2015 10:37 p.m., Vasileios Anagnostopoulos via Digitalmars-d-learn wrote: hi, I observed in the documentation "If continue is followed by /Identifier/, the /Identifier/ must be the label of an enclosing while, for, or do loop, and the next iteration of that loop is executed. It is an e

Clarification in continue statement

2015-02-06 Thread Vasileios Anagnostopoulos via Digitalmars-d-learn
hi, I observed in the documentation "If continue is followed by *Identifier*, the *Identifier* must be the label of an enclosing while, for, or do loop, and the next iteration of that loop is executed. It is an error if there is no such statement." But there is no example. Can someone provide on