package main import ( "fmt" ) func main() { for i := 1; i <= 5; i++ { //TIP

To start your debugging session, right-click your code in the editor and select the Debug option.

We have set one breakpoint // for you, but you can always add more by pressing .

fmt.Println("i =", 100/i) } }