Files
2026-07-04 01:53:00 +01:00

27 lines
302 B
Markdown

# Go Random
Functions to create random values. That's about the size of it.
## Example
```go
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](./LICENSE.md)