neilsf / XC-BASIC

A compiling BASIC dialect for the Commodore-64
https://xc-basic.net/
MIT License
74 stars 15 forks source link

FOR with integer index skips last iteration #97

Closed neilsf closed 4 years ago

neilsf commented 4 years ago

This FOR loop runs one less iteration than required:

 for i = 0 to 9
   print i
 next i

Expected output: numbers from 0 to 9 Actual output: numbers from 0 to 8