mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-03 07:56:42 -05:00
13 lines
112 B
Go
13 lines
112 B
Go
package dice
|
|
|
|
import (
|
|
"math/rand"
|
|
)
|
|
|
|
func Roll(n int) int {
|
|
if n == 1 {
|
|
return 0
|
|
}
|
|
return rand.Intn(n)
|
|
}
|