Scope and loop II

Report a typo

for i := 1; i < 5; i++ {
    if i == 2 {
        continue
    }
    fmt.Println("New line")
}

How many times will New line be printed?

Enter a number
___

Create a free account to access the full topic