Swift Break y continúa dentro del bucle anidado
// outer loop
for week in 1...3 {
print("Week: \(week)")
// inner loop
for day in 1...7 {
if(week == 2) {
// use of break statement
break
}
print(" Day: \(day)")
}
print("")
}
SAMER SAEID