var i = 2
for ; i < 5; i++ {
if i == 4 {
break
}
}
fmt.Print(i)
What will be printed in this case?
var i = 2
for ; i < 5; i++ {
if i == 4 {
break
}
}
fmt.Print(i)
What will be printed in this case?
Create a free account to access the full topic