for1.go 119 B

123456789
  1. package main
  2. import "fmt"
  3. func main() {
  4. for i := 0; i < 5; i++ {
  5. fmt.Printf("This is the %d iteration\n", i)
  6. }
  7. }