package main import "fmt" func main() { for i := 0; i < 5; i++ { fmt.Println("Iteration:", i) } }
Click Run to execute this code.