Răsfoiți Sursa

add readme for each package

Aneurin Barker Snook 11 luni în urmă
părinte
comite
891394af95
1 a modificat fișierele cu 26 adăugiri și 0 ștergeri
  1. 26 0
      README.md

+ 26 - 0
README.md

@@ -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)