Explanation
STOP Statement
Halts a program.Worth knowing
Useful and cross-version information about the programming environments of QBasic, QuickBasic and Visual Basic for DOS.
Useful and cross-version information about the programming environments of QBasic, QuickBasic and Visual Basic for DOS.
STOP |
The STOP keyword also suspends trapping of events in these statements: | ||||||
|
FOR i% = 1 TO 10
PRINT i%
IF i% = 5 THEN STOP 'STOP pauses; F5 Continues.
NEXT i%