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.
 
 
 
 
 
 

14 lines
252 B

  1. 5 REM Fibonacci numbers 4-13-2020 Ken
  2. 7 CALL SHELL("cls")
  3. 10 LET M = 5000
  4. 20 LET X = 1 : LET Y = 1
  5. 30 IF (X > M) GOTO 100
  6. 40 PRINT X
  7. 50 X = X + Y
  8. 60 IF (Y > M) GOTO 100
  9. 70 PRINT Y
  10. 80 Y = X + Y
  11. 90 GOTO 30
  12. 100 STOP