package main import "fmt" func main() { count := 9 for count != -1 { fmt.Print(count) count-- } fmt.Println() }