970aa6c66760a6475d1a36ef146ea8a3e6b41af5
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
Description
Languages
Go
100%