home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / spezial / 20 / win_txl / beispiel / while.txl < prev    next >
Encoding:
Text File  |  1991-01-08  |  84 b   |  8 lines

  1. 010 let a=0;
  2. 020 while a<10;
  3. 030 print a;
  4. 040 let a=a+1;
  5. 050 wend;
  6. 060 end;
  7.  
  8.