home *** CD-ROM | disk | FTP | other *** search
GW-BASIC | 1990-05-05 | 757 b | 17 lines |
- 1 CLS:PRINT "SONG EDITOR. File Translator into BASIC-Interpritator "
- 3 PRINT "This program will help you to translate Song Editor basic output file"
- 4 PRINT "to BASIC-Interpritator file. This should be done by the following way:"
- 5 PRINT " 1. Enter the name of the file which you want to translate."
- 6 PRINT " 2. Your file will be shown on the screen."
- 7 PRINT " 3. To memorize this file one should set cursor on each line and press Enter."
- 8 PRINT " 4. Then save file on the disk. That's it."
- 9 PRINT "To repeat this procedure you need to load the File Translator program again."
- 10 INPUT "Enter file name :",F$
- 15 OPEN F$ FOR INPUT AS #1
- 20 IF EOF(1)=-1 THEN GOTO 45
- 25 INPUT #1,A$
- 30 I=I+5
- 35 PRINT I;A$
- 40 GOTO 20
- 45 PRINT "That's it!":DELETE 1-45
-