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.
 
 
 
 
 
 

26 lines
852 B

  1. 02000 REM ----------------------------------------------------
  2. 02010 REM FILENAME: chain2.txt
  3. 02020 REM PURPOSE: Verify CHAIN <file-name>
  4. 02030 REM AUTHOR: Howard Wulf AF5NE
  5. 02040 REM DATE: October 10th, 2014
  6. 02050 REM ----------------------------------------------------
  7. 02060 REM This file is chained by "chain2.bas"
  8. 02070 REM
  9. 02080 PRINT "Inside E039.CHN"
  10. 02090 PRINT "X$="; X$
  11. 02100 if X$ <> "abcdef" then goto TestFailed
  12. 02110 print "A$="; A$
  13. 02120 if A$ <> "" then goto TestFailed
  14. 02130 print "*** TEST #1 PASSED ***"
  15. 8000 rem ------------------------------------------
  16. 8010 TestPassed:
  17. 8020 print "*** ALL TESTS PASSED ***"
  18. 8030 goto TheEnd
  19. 8500 rem ------------------------------------------
  20. 8510 TestFailed:
  21. 8520 print "*** TEST FAILED ***"
  22. 8530 goto TheEnd
  23. 9000 rem ------------------------------------------
  24. 9010 TheEnd:
  25. 9999 end