Re: For loops
- Posted by c.k.lester <euphoric at ckles?er?com> Nov 20, 2007
- 609 views
Matt Lewis wrote: > > I think that there's a legitimate place for something like the C-style > for-loop. It gives us a fairly well structured while loop that I think > makes for clearer code, since the mechanics of the loop are declared > before hand, but you have much greater freedom in choosing your method > of iteration and termination. Would this be too far outside Euphoric philosophy:
for( x, x+1, x < 10) -- ... end for