mirror of
https://gitee.com/johng/gf
synced 2026-06-07 02:12:11 +08:00
12 lines
127 B
Go
12 lines
127 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gogf/gf/util/gconv"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(gconv.Strings([]int{1, 2, 3}))
|
|
}
|