Re: Simpler....

2001-12-05 Thread Brett W. McCoy
On Wed, 5 Dec 2001, Daniel Falkenberg wrote: > Please don't stree to much over this one but, is there an easier way of > writing this? > > while(1){ > if ($status == 1) { > #Do this sub... > sub(); > elsif ($status == 1) { > #Do this other sub... > sub2(); > } else { > #

RE: Simpler....

2001-12-05 Thread Shinagare, Sandeep
December 2001 11:38 To: [EMAIL PROTECTED] Subject: Re: Simpler Hello Daniel, Wednesday, December 05, 2001, Daniel Falkenberg <[EMAIL PROTECTED]> wrote: DF> Please don't stree to much over this one but, is there an easier way of DF> writing this? DF> while(1){ DF>

Re: Simpler....

2001-12-05 Thread Maxim Berlin
Hello Daniel, Wednesday, December 05, 2001, Daniel Falkenberg <[EMAIL PROTECTED]> wrote: DF> Please don't stree to much over this one but, is there an easier way of DF> writing this? DF> while(1){ DF> if ($status == 1) { DF> #Do this sub... DF> sub(); DF> elsif ($status == 1) { DF>

Re: Simpler....

2001-12-04 Thread Jim Conner
At 15:22 12.05.2001 +1030, Daniel Falkenberg wrote: >Hey all, > >Please don't stree to much over this one but, is there an easier way of >writing this? Ok. I haven't read the thread yet because I want to take a fresh shot at this... so here goes... >while(1){ > if ($status == 1) { > #D

Re: Simpler....

2001-12-04 Thread Hasanuddin Tamir
On Wed, 5 Dec 2001, Daniel Falkenberg <[EMAIL PROTECTED]> wrote, > Hey all, > > Please don't stree to much over this one but, is there an easier way of > writing this? > > while(1){ > if ($status == 1) { > #Do this sub... > sub(); > elsif ($status == 1) { > #Do this other sub...

Re: Simpler....

2001-12-04 Thread Ahmed Moustafa
t;Sent: Wednesday, 5 December 2001 3:27 PM >To: Daniel Falkenberg >Cc: [EMAIL PROTECTED] >Subject: Re: Simpler > > >Dan, does sub() changes the value of $status? Also, do sub() and sub2() >break the loop? > >Daniel Falkenberg wrote: > >>Hey all, >> >&

Re: Simpler....

2001-12-04 Thread Ahmed Moustafa
Dan, does sub() changes the value of $status? Also, do sub() and sub2() break the loop? Daniel Falkenberg wrote: > Hey all, > > Please don't stree to much over this one but, is there an easier way of > writing this? > > while(1){ > if ($status == 1) { > #Do this sub... > sub(); >