make a Exclusive number inside 2nd loop swift code example
Example: swift for loop
for i in 0...10 {
print(i)
}
let array = Array(0...10) //same as [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
for value in array {
print(value)
}
for i in 0...10 {
print(i)
}
let array = Array(0...10) //same as [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
for value in array {
print(value)
}