mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 13:18:01 +08:00
14 lines
150 B
Go
14 lines
150 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gogf/gf/util/grand"
|
|
)
|
|
|
|
func main() {
|
|
for i := 0; i < 100; i++ {
|
|
fmt.Println(grand.Rand(0, 99999))
|
|
}
|
|
}
|