package cycle import ( fmt "fmt" ) func SimpleForCycle() { for i := 0; i < 100; i++ { fmt.Println("Iter: ", i) } }