Generate random values in Go

Aneurin Barker Snook 7ff3eec250 duplicate license to each package 11 ماه پیش
LICENSE.md 7ff3eec250 duplicate license to each package 11 ماه پیش
README.md 891394af95 add readme for each package 11 ماه پیش
go.mod 84ebfa2973 migrate from recipeer org to annybs 1 سال پیش
random.go f910ac85cb add simple random package 1 سال پیش

README.md

Go Random

Functions to create random values. That's about the size of it.

Example

package main

import (
	"fmt"

	"github.com/annybs/go/random"
)

func main() {
	n := make([]bool, 10)
	for i := range n {
		fmt.Println(random.Str(4 + i))
	}
}

License

See LICENSE.md