mirror of
https://gitee.com/johng/gf
synced 2026-07-06 13:42:46 +08:00
15 lines
127 B
Go
15 lines
127 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gogf/gf/g/util/grand"
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
for {
|
|
fmt.Println(grand.Intn(100))
|
|
}
|
|
|
|
} |