UnderwareDESIGN

PlayBASIC => Beginners => Topic started by: stevmjon on February 22, 2025, 09:42:41 PM

Title: Loops - variable or command?
Post by: stevmjon on February 22, 2025, 09:42:41 PM
just wondering when using a loop is it best to use variables or commands?

#1 :

For lp = 0 to GetScreenWidth()

#2 :

width = GetScreenWidth()
For lp = 0 to width

i am not sure if the #1 command is read once or is it read each iteration of the loop?
i have always used variables as these are fast access.
Title: Re: Loops - variable or command?
Post by: kevin on February 23, 2025, 01:09:06 AM
Expressions are pre-evaluated into temp variables.

So GetScreenWidth() (https://playbasic.com/help.php?page=SCREEN.GETSCREENWIDTH) is only called once to compute the end of the range.



[pbcode]



setfps 30

Do
    cls
   
    For xlp=0 to _GetScreenWidth()
        print xlp
    next

    sync
   
loop spacekey()
end


function _GetScreenWidth()
      print "Called _GetScreenWidth()"
EndFunction 10


[/pbcode]