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.
 
 
 
 
 
 

17 lines
273 B

  1. 100 rem
  2. 110 on error goto 800
  3. 120 label1:
  4. 130 error 1
  5. 140 label2:
  6. 150 stop
  7. 800 rem
  8. 810 print "ERL=";ERL
  9. 820 print "label1=";label1
  10. 830 print "label2=";label2
  11. 840 if ERL > label1 AND ERL < label2 THEN
  12. 850 print "*** TEST PASSED ***"
  13. 860 goto 999
  14. 870 end if
  15. 880 stop
  16. 999 end