A second way of writing loops is using while
: give it a condition to check, and its loop code will go around and around until the condition fails.
For example, we could use a while
loop to simulate a child counting in a game of hide and seek: we start at one, count up to and including 20 while printing each number out, then after the loop print “Ready or not”.
Here’s how that looks in Swift:
var number = 1
while number <= 20 {
print(number)
number += 1
}
print("Ready or not, here I come!")
SPONSORED Alex is the iOS & Mac developer’s ultimate AI assistant. It integrates with Xcode, offering a best-in-class Swift coding agent. Generate modern SwiftUI from images. Fast-apply suggestions from Claude 3.5 Sonnet, o3-mini, and DeepSeek R1. Autofix Swift 6 errors and warnings. And so much more. Start your 7-day free trial today!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.