Re: (!) Simple for-next loops using , was: Re: [S2] using for a sequence of integers

2008-06-17 Thread Dave Newton
; > > > > > Aww yeah. > > > > Dave "OGNL FTW" Newton > > > > --- On Sat, 6/14/08, Pierre Thibaudeau > <[EMAIL PROTECTED]> wrote: > > > >> From: Pierre Thibaudeau > <[EMAIL PROTECTED]> > >> Subject: [S2] usin

Re: (!) Simple for-next loops using , was: Re: [S2] using for a sequence of integers

2008-06-17 Thread Laurie Harper
e #this questions. Narnar Aww yeah. Dave "OGNL FTW" Newton --- On Sat, 6/14/08, Pierre Thibaudeau <[EMAIL PROTECTED]> wrote: From: Pierre Thibaudeau <[EMAIL PROTECTED]> Subject: [S2] using for a sequence of integers To: "Struts Users Mailing List" Date: S

Re: (!) Simple for-next loops using , was: Re: [S2] using for a sequence of integers

2008-06-17 Thread Dave Newton
Aww, you guys are making me sad :( --- On Tue, 6/17/08, Al Sutton <[EMAIL PROTECTED]> wrote: > From: Al Sutton <[EMAIL PROTECTED]> > Subject: Re: (!) Simple for-next loops using , was: Re: [S2] > using for a sequence of integers > To: "Struts Users Mailing Li

Re: (!) Simple for-next loops using , was: Re: [S2] using for a sequence of integers

2008-06-17 Thread Al Sutton
Dave "OGNL FTW" Newton --- On Sat, 6/14/08, Pierre Thibaudeau <[EMAIL PROTECTED]> wrote: From: Pierre Thibaudeau <[EMAIL PROTECTED]> Subject: [S2] using for a sequence of integers To: "Struts Users Mailing List" Date: Saturday, June 14, 2008, 10:26 PM

Re: (!) Simple for-next loops using , was: Re: [S2] using for a sequence of integers

2008-06-17 Thread Musachy Barroso
ROTECTED]> wrote: > >> From: Pierre Thibaudeau <[EMAIL PROTECTED]> >> Subject: [S2] using for a sequence of integers >> To: "Struts Users Mailing List" >> Date: Saturday, June 14, 2008, 10:26 PM >> Is there a simple syntax with or >> for di

(!) Simple for-next loops using , was: Re: [S2] using for a sequence of integers

2008-06-17 Thread Dave Newton
OGNL FTW" Newton --- On Sat, 6/14/08, Pierre Thibaudeau <[EMAIL PROTECTED]> wrote: > From: Pierre Thibaudeau <[EMAIL PROTECTED]> > Subject: [S2] using for a sequence of integers > To: "Struts Users Mailing List" > Date: Saturday, June 14, 2008, 10:26 PM

Re: [S2] using for a sequence of integers

2008-06-14 Thread Pierre Thibaudeau
Good point. Thank you! 2008/6/14 Dave Newton <[EMAIL PROTECTED]>: > I usually just use which has clean support for for/next type > iteration. doesn't currently implement similar usage, AFAIK. >

Re: [S2] using for a sequence of integers

2008-06-14 Thread Dave Newton
I usually just use which has clean support for for/next type iteration. doesn't currently implement similar usage, AFAIK. Dave --- On Sat, 6/14/08, Pierre Thibaudeau <[EMAIL PROTECTED]> wrote: > From: Pierre Thibaudeau <[EMAIL PROTECTED]> > Subject: [S2] using for

[S2] using for a sequence of integers

2008-06-14 Thread Pierre Thibaudeau
Is there a simple syntax with or for displaying a sequence of integers from 0 to N-1 ? (The value of N is not known at compile time.) At the moment, the only way I can think of doing this is not very appealing: Within the action, create an ArrayList and populate it with the sequence of integers.