Help for this page

Select Code to Download


  1. or download this
    A: S;
       if  B  then  goto  Z   fi;
       T;
       goto  A;
    Z:
    
  2. or download this
    loop;  S  while !B:  T;  repeat;
    
  3. or download this
    loop {
         S;
    } while (!B) {
         T;
    }