Starting the next iteration of a loop immediately in Ada
ada
Solution
You could use a goto statement
Problem
I want to have an endless loop where the loop runs through nearly the entire program and at any point, based on a condition statement, I want it to exit that particular iteration of the loop and go back to the top and execute. Is there a way this can be done? It doesn't have to be an endless loop; it can be a for loop. I just want it to go to the next iteration of that loop.