Help for this page

Select Code to Download


  1. or download this
        S while (!B): T;
    
  2. or download this
        loop (; S while (!B): T ; repeat) {
        }
    
  3. or download this
            while (1) {
                S;              # make a calculation
            last if (B);        # drop out when the result is right
                T;              # adjust the parameters for another try
            }