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