Skip to content

A small utility to generate random words in #golang

License

Notifications You must be signed in to change notification settings

chrisreedtech/babble

 
 

Repository files navigation

Babble

Babble is a small utility that generates random words for you. I found this useful because occasionally you need a random word for testing.

tower of babel

Usage

package your_app

import (
  "github.com/tjarratt/babble"
)

func main() {
  babbler := babble.NewBabbler()
  println(babbler.Babble()) // excessive-yak-shaving (or some other phrase)

  // optionally set your own separator
  babbler.Separator = " "
  println(babbler.Babble()) // "hello from nowhere" (or some other phrase)

  // optionally set the number of words you want
  babbler.Count = 1
  println(babbler.Babble()) // antibiomicrobrial (or some other word)

  return
})

About

A small utility to generate random words in #golang

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%