On Thu, 2008-12-25 at 19:15 +0530, Sharan Basappa wrote:
> Hi Jenda, Rob, Shawn,
> 
>  I am attaching a sample flowchart figure.
> 
>  Step1 and Step2 are the process steps and D1 and D2 are the decisions.
> 
>  Will this code translate to the foll in perl?
> 
>  do
>  {
>   do
>   {
>      step1
>   } while (D1)
>   step2
>  } while (D2)
> 
>  What if D2 traces back to Step2 instead? How would the code change?
> 
>  Regards

I think you mean:

do {
  step1
}while( D1 )

do {
  step2
while( D2 )


-- 
Just my 0.00000002 million dollars worth,
  Shawn

Believe in the Gods but row away from the rocks.
  -- ancient Hindu proverb


-- 
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to