Random name generator
using Pkg
Pkg.add(url="https://github.com/mtanneau/Geppetto.jl.git")
The package exports a single function randname
, which generates a random String
-valued identifier of the form
"{adjective}-{color}-{animal}"
.
julia> using Geppetto
julia> randname()
"Quiet-Red-Lemming"
julia> randname()
"Heroic-Crimson-Vervet"