Generate random values in Go

Aneurin Barker Snook cb4c1a6856 add test workflow пре 10 месеци
.github cb4c1a6856 add test workflow пре 10 месеци
.gitignore 4c2e68be29 ensure go.sum not committed пре 10 месеци
LICENSE.md 7ff3eec250 duplicate license to each package пре 11 месеци
README.md 970aa6c667 fix link to license пре 10 месеци
go.mod cd9c127cb0 rename module пре 10 месеци
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