package main import "fmt" func main() { for i := 0; i < 6; i++ { fmt.Printf("Hello world, %d\n", i) } }