home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / 1989 / 04 / grdlage / edisave.bas < prev    next >
Encoding:
BASIC Source File  |  1989-01-18  |  385 b   |  15 lines

  1. '* ------------------------------------------------------- *
  2. '*  Listing 3: Editor mit "SAVE" alle fünf Minuten         *
  3. '* ------------------------------------------------------- *
  4. TIMER ON : ON TIMER(300) GOSUB scopy
  5.   ......
  6.   REM editor
  7.   ......
  8. END
  9.  
  10. scopy:
  11.   ......
  12.   REM TextAbspeichern
  13.   ......
  14. RETURN
  15. '* ------------------------------------------------------- *