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.
 
 
 
 
 
 

20 lines
363 B

  1. 100 rem Purpose: Verify GOTO X OF line,...
  2. 110 rem Author: Howard Wulf, AF5NE
  3. 120 rem Date: 2015-05-22
  4. 130 rem
  5. 140 let x=5
  6. 150 goto X of 1100,1200,1300,1400,1500
  7. 160 print "GOTO X OF FAILED"
  8. 170 stop
  9. 1100 print "1"
  10. 1110 goto 9999
  11. 1200 print "2"
  12. 1210 goto 9999
  13. 1300 print "3"
  14. 1310 goto 9999
  15. 1400 print "4"
  16. 1410 goto 9999
  17. 1500 print "5"
  18. 1510 goto 9999
  19. 9999 end