mirror of https://github.com/v2ray/v2ray-core
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)
|
||
|
}
|