home *** CD-ROM | disk | FTP | other *** search
- '**************************************
- '
- ' C-Control/BASIC PROG1.BAS
- '
- ' Aufgabe:
- '
- ' - Das erste BASIC-Programm
- ' - Aufbau einer ZΣhlschleife
- '
- '**************************************
- ' --- Definitionen --------------------
-
- define N Byte
-
- ' --- Programmoperationen -------------
-
- #Loop
- for N = 1 to 100
- print N
- next
- goto Loop 'Endlosschleife
-
-
-
-
-
-