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.
|
- 100 REM Purpose: Verify IF END command
- 110 REM /Author: Howard Wulf, AF5NE
- 120 REM Date: 2015-12-23
- 130 REM
-
- 200 IF END # 777 THEN 500
- 210 PRINT "ABOUT TO EXECUTE TEST"
- 220 OPEN "NO SUCH FILE" AS # 777
- 230 PRINT "TEST FAILED - 'IF END' DID NOT EXECUTE"
- 240 GOTO 999
- 500 PRINT "TEST PASSED"
- 999 END
|