ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
301 B

  1. 100 REM Purpose: Verify IF END command
  2. 110 REM /Author: Howard Wulf, AF5NE
  3. 120 REM Date: 2015-12-23
  4. 130 REM
  5. 200 IF END # 777 THEN 500
  6. 210 PRINT "ABOUT TO EXECUTE TEST"
  7. 220 OPEN "NO SUCH FILE" AS # 777
  8. 230 PRINT "TEST FAILED - 'IF END' DID NOT EXECUTE"
  9. 240 GOTO 999
  10. 500 PRINT "TEST PASSED"
  11. 999 END