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.
 
 
 
 
 
 

18 lines
394 B

  1. 100 rem Purpose: Verify AS range
  2. 110 rem Author: Howard Wulf, AF5NE
  3. 120 rem Date: 2015-06-07
  4. 130 rem
  5. 140 on error goto 300
  6. 200 def abc( e as integer ) as integer
  7. 210 let abc = e * 10
  8. 220 fnend
  9. 230 print "abc(6000)"
  10. 240 print abc(6000)
  11. 250 print "abc(60000)"
  12. 260 print abc(60000)
  13. 270 goto 999
  14. 300 rem
  15. 310 print "ERL=";ERL;"ERR=";ERR
  16. 320 resume next
  17. 999 end