home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 April / CHIP4_98.ISO / software / ccconrad / basic.exe / CHIP / Programme.Bas / Beispiele_1 / 001.BAS next >
Encoding:
BASIC Source File  |  1997-02-16  |  936 b   |  47 lines

  1. '********************************************************************
  2. '
  3. ' C-Control/BASIC       001.BAS
  4. '
  5. ' Systemvoraussetzungen:
  6. '
  7. ' - serielle Verbindung zum PC
  8. ' - Terminalprogramm
  9. '
  10. ' Schwerpunkte:
  11. '
  12. ' - Textausgabe mit PRINT
  13. '
  14. '********************************************************************
  15.  
  16. ' --- Programmoperationen -------------------------------------------
  17.  
  18. 'Programmtitel ausgeben 
  19. print "C-Control/BASIC      001.BAS"
  20. print "============================"
  21.  
  22. 'Leerzeile
  23. print
  24.  
  25. 'noch ein Text
  26. print "Hallo!"
  27.  
  28. 'mehrere Ausgaben in einer Zeile
  29. print "Hallo!";
  30. print "Hallo!";
  31. print "Hallo!"
  32.  
  33. ' zusammengefasst in einem Befehl
  34. print "Hallo!"; "Hallo!"; "Hallo!"
  35.  
  36. ' mit Tabulatoren dazwischen
  37. print "Hallo!", "Hallo!", "Hallo!"
  38.  
  39. ' noch eine Leerzeile ausgeben und Programmende
  40. print
  41. end
  42.  
  43. ' Wenn der Starttaster jetzt noch gedrueckt ist,
  44. ' beginnt das Programm wieder von vorn!
  45.  
  46.  
  47.