This repository has been archived on 2026-09-07 . You can view files and clone it. You cannot open issues or pull requests or push a commit.
4c2e68be297bf5105c0c3900912f1a34ba63f68d
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
Languages
Go
100%