mirror of
https://gitee.com/johng/gf
synced 2026-06-27 01:43:33 +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))
|
|
}
|
|
}
|