mirror of
https://github.com/jefferyjob/go-easy-utils.git
synced 2026-04-23 00:07:09 +08:00
14 lines
119 B
Go
14 lines
119 B
Go
package anyx
|
|
|
|
import "fmt"
|
|
|
|
func ExampleToStr() {
|
|
a := 123
|
|
res := ToStr(a)
|
|
|
|
fmt.Println(res)
|
|
|
|
// Output:
|
|
// 123
|
|
}
|