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 {
> #
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>
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>
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
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...
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,
>>
>&
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();
>