mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-07-08 09:31:23 +00: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)
|
||
|
}
|