Ocean/Tools/Random.go

9 lines
115 B
Go
Raw Normal View History

package Tools
import "math/rand"
func RandomInteger(max int) (rnd int) {
rnd = rand.Intn(max)
return
}