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