for, while loops / break and continue / Essential

Run Settings
LanguageGo
Language Version
Run Command
package main import "fmt" func main() { for i := 0; i < 3; i++ { if i == 1 { continue } fmt.Printf("i: %d\n", i) } }
Editor Settings
Theme
Key bindings
Full width
Lines