Say I have a function that contains a while loop that calls another function. Something like this:
Function SomeFunction() while somevariable < 5 SomeOtherFunction() somevariable += 1 endwhileEndFunction
Would this function actually wait for the return of the while loop before processing the variable increment?
Also, what if I called ANOTHER function from SomeOtherFunction. Would the original while loop wait for the SomeOtherFunction to get the return of what IT called, before waiting for SomeOtherFunction to complete, before hitting the increment?
