Adjective Adjective Animal
This is a port of this node.js project.
It will generate a specified number of adjectives, then an animal at the end. The words are separated by a character of your choice.
Installation
$ go get -u github.com/nii236/adjectiveadjectiveanimalExample Usage
package main
import (
"fmt"
aaa "github.com/nii236/adjectiveadjectiveanimal"
)
func main() {
result := aaa.Generate(3, "-")
fmt.Println(result)
}
$ go run main.go
unprotected-ultramicroscopic-foolproof-millipede
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -am 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request :D