When you've mastered Looping While False, it's time to move on to the next level: Conditioning and Looping.
Here, we'll explore the dark arts of while (true). A loop that never ends, much like the cycle of pain and despair that is your aunt's gossip at the family reunion.
if (condition) to check the condition, and while (condition) to loop until it's met.break; and continue; statements to avoid getting stuck in an infinite loop.