var counter = 0 while true { print("Counter is now \(counter)") counter += 1 if counter == 556 { break } }