math/rand
Package rand
Overview
Package rand implements pseudo-random number generators.
Random numbers are generated by a Source. Top-level functions, such as Float64 and Int, use a default shared Source that produces a deterministic sequence of values each time a program is run. Use the Seed function to initialize the default Source if different behavior is required for each run. The default Source is safe for concurrent use by multiple goroutines.
For random numbers suitable for security-sensitive work, see the crypto/rand package.
Example
package main import ( "fmt" "math/rand" ) func mai