Help for this page

Select Code to Download


  1. or download this
      do { BLOCK } while ( COND );
    
  2. or download this
      while ( COND ) { BLOCK }
    
  3. or download this
      do { BLOCK } for ( LIST );
    
  4. or download this
      for ( LIST ) { BLOCK }