home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l076 / 1.ddi / BREAK.TRU < prev    next >
Encoding:
Text File  |  1984-12-19  |  1.1 KB  |  23 lines

  1. True BASIC           BREAK
  2.      
  3.       Type         │   Press      │
  4. ───────────────────┼──────────────┼──────────────────────────────────────────
  5.                    │              │
  6.   BREAK            │              │ to insert a breakpoint at the first
  7.                    │              │ line in a marked block
  8.                    │              │
  9.   BREAK block      │              │ to insert a breakpoint at the
  10.                    │              │ first line in the specified block
  11.                    │              │
  12. ───────────────────┴──────────────┴──────────────────────────────────────────
  13.  
  14. True BASIC suspends execution of your program just before the execution
  15. of a breakpointed line and lets you inspect and change the values of
  16. variables.  You can use certain True BASIC statements, such as LET and
  17. PRINT, as commands in the history window to do this.
  18.  
  19. To remove a breakpoint, simply break on that line again.  All breakpoints
  20. are removed when you modify a program.
  21.  
  22. See also:  HELP CONTINUE    continuing the running of a suspended program
  23.