gf/.example/other/test.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))
}
}