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.
0550aec6ad622c7217f141fa02ab8b140ef17cd6
Go Random
Functions to create random values. That's about the size of it.
Example
package main
import (
"fmt"
"code.aneur.in/go/random"
)
func main() {
n := make([]bool, 10)
for i := range n {
fmt.Println(random.Alpha(4 + i))
}
}
License
See LICENSE.md
Languages
Go
100%