Swift pour VS While Loop

// this loop is iterated 5 times
for number in 1...5 {
   // body of loop
}
SAMER SAEID