for, while loops / break and continue / Essential

Run Settings
LanguageGo
Language Version
Run Command
package main import "fmt" func main() { j := 100 loop: for j < 110 { j++ switch j % 3 { case 0: continue loop case 1: break loop } fmt.Println("Var : ", j) } }
Editor Settings
Theme
Key bindings
Full width
Lines