home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 April / CHIP4_98.ISO / software / ccconrad / basic.exe / CHIP / Programme.Bas / Beispiele_2 / PROG1.BAS < prev    next >
Encoding:
BASIC Source File  |  1997-06-17  |  401 b   |  27 lines

  1. '**************************************
  2. '
  3. ' C-Control/BASIC       PROG1.BAS
  4. '
  5. ' Aufgabe:
  6. '
  7. ' - Das erste BASIC-Programm
  8. ' - Aufbau einer ZΣhlschleife
  9. '
  10. '**************************************
  11. ' --- Definitionen --------------------
  12.  
  13. define N Byte
  14.  
  15. ' --- Programmoperationen -------------
  16.  
  17. #Loop
  18.   for N = 1 to 100
  19.   print N
  20.   next
  21. goto Loop              'Endlosschleife
  22.  
  23.  
  24.  
  25.  
  26.  
  27.