home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / PRG / bwbasic-2.10.sit / bwbasic-2.10 / bwbtest / stop.bas < prev    next >
BASIC Source File  |  1993-11-09  |  234b  |  7 lines

  1. 10 REM STOP.BAS -- Test STOP Statement 
  2. 20 PRINT "STOP.BAS -- Test STOP Statement" 
  3. 30 PRINT "If the program is interrupted after this line, STOP worked OK"
  4. 40 STOP 
  5. 50 PRINT "But if this line printed, then it did not work." 
  6. 60 END 
  7.