Hello!
I know it may be an obvious question, but I haven't to manage an answer anywhere.
How do I create a loop that starts when "b" condition is satisfied, but doesn't stop if "b" condition is no longer verificated?
Thanks!
Yes, but with this code, if for example b is at start = 1, then = 2, and finally again = 1, and my while loop needs b to be = 2 to work, in the case I have written before, when b comes back to 1 the while loop stops.
I think what you are saying is that once condition b is satisfied, start the loop, but keep the loop running even if condition b is no longer satisfied.
Perhaps: