Files
go-easy-utils/anyx/to_str_example_test.go
T
2025-07-08 15:26:54 +08:00

14 lines
119 B
Go

package anyx
import "fmt"
func ExampleToStr() {
a := 123
res := ToStr(a)
fmt.Println(res)
// Output:
// 123
}