i'm new to swift programming and was hoping to utilize a conditional && for a while loop but it almost seems like i need to break it out and have a nested while loop?
what i'm trying to do:
------------------
counter1 = 0
counter2 = 0
while (counter1<0) && (counter2<0)
-----------------
that way i can use common code, otherwise it seems like i need to have 2 nested while loops and possibly duplicate code for each loop?
Thanks