Re: [Vala] Small syntax request labeled loops



Sure. Either option is fine with me.

Dov

2008/7/1 Ed Schouten <ed 80386 nl>:
* Dov Grobgeld <dov grobgeld gmail com> wrote:
> A small syntax enhancement borrowed from Perl that I would like to see in
> vala is labeled loops, that can be referenced in continue and break
> statements. Here is an example:
>
>
> pixels:
> while(foo) {
>     for (int i=0; i<1000; i++) {
>         if (a)
>             break pixels;
>         if (b)
>             continue pixels;
>     }
> }
>
> See the "last" and "next" statements of perl for a larger example.
>
> Thanks!
> Dov

Why not do it sh(1) style? (continue 2, break 2).

--
 Ed Schouten <ed 80386 nl>
 WWW: http://80386.nl/



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]