add readme for each package

This commit is contained in:
Aneurin Barker Snook
2024-06-21 21:54:44 +01:00
parent 84ebfa2973
commit 891394af95
+26
View File
@@ -0,0 +1,26 @@
# Go Random
Functions to create random values. That's about the size of it.
## Example
```go
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](../LICENSE.md)