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