mirror of
https://gitee.com/johng/gf
synced 2026-07-04 04:52:48 +08:00
11 lines
135 B
Go
11 lines
135 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"gitee.com/johng/gf/g/util/gconv"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(gconv.Strings([]int{1,2,3}))
|
|
}
|