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.
 
 
 
 
 
 

16 lines
554 B

  1. 00100 REM ----------------------------------------------------
  2. 00110 REM FILENAME: common1.bas
  3. 00120 REM PURPOSE: Verify COMMON
  4. 00130 REM AUTHOR: Howard Wulf AF5NE
  5. 00140 REM DATE: October 10th, 2014
  6. 00160 REM ----------------------------------------------------
  7. 01000 COMMON X$, Z
  8. 01010 X$ = "abcdef"
  9. 01020 Z = 1.2345
  10. 01030 chain "E042.CHN"
  11. 03000 REM ----------------------------------------------------
  12. 03010 REM If we get to here, then the CHAIN failed
  13. 03020 REM ----------------------------------------------------
  14. 03030 ERROR 1
  15. 03040 STOP