for i := 1; i < 5; i++ {
if i == 2 {
continue
}
fmt.Println("New line")
}
How many times will New line be printed?
for i := 1; i < 5; i++ {
if i == 2 {
continue
}
fmt.Println("New line")
}
How many times will New line be printed?
Create a free account to access the full topic