mirror of
https://gitee.com/johng/gf
synced 2026-07-04 21:03:13 +08:00
14 lines
153 B
Go
14 lines
153 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gogf/gf/util/guid"
|
|
)
|
|
|
|
func main() {
|
|
for i := 0; i < 100; i++ {
|
|
s := guid.S()
|
|
fmt.Println(s, len(s))
|
|
}
|
|
}
|