Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 268 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 268 Bytes

randy

Package randy provides a simple way to generate random data.

Usage

package main

import (
	"log"
	"randy"
)

func main() {
	name, err := randy.Name();
	if err != nil {
		log.Fatal(err.Error());
	}

	println(name);
}

Output:

Craig