✅ im a begginer, can someone help me and tell me whats wrong?
making cs2 just for fun and i have no idea how to make it work

3 Replies
You probably want
i <= 64
i = 64
will set i
to 64
, which is not what you want in this case
If you want the last iteration of the loop to be 64
then you want i <= 64
, otherwise if you want the last iteration to be 63
then you want i < 64
thank you very much sir i apprecieate your help!
no problem :tupul: