Files
random/README.md
T
Aneurin Barker Snook 970aa6c667 fix link to license
2024-07-19 15:38:37 +01:00

304 B

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