Skip to content

Instantly share code, notes, and snippets.

@dnozay
Created February 4, 2020 01:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dnozay/370b57a9d230198f2d914e012f024779 to your computer and use it in GitHub Desktop.
Save dnozay/370b57a9d230198f2d914e012f024779 to your computer and use it in GitHub Desktop.
// exercise issue.
// https://github.com/semaphoreci/agent/pull/77
package main
import (
"fmt"
petname "github.com/dustinkirkland/golang-petname"
)
func main() {
for i := 0; i < 2000; i++ {
name := petname.Generate(3, "-")
fmt.Printf("│││││││││││││ %30s │││││││││││││││\n", name)
}
}
│││││││││││││             likely-giving-calf │││││││││���│││││
│││││││││││││      miserably-feasible-caiman ││���││││││││││││
│││││││││││││         fully-magnetic-grackle │││││││││││││││
│││││││││││││                really-fun-dodo │││││││││││││││
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment