ferry/tools/int64.go

7 lines
104 B
Go
Raw Permalink Normal View History

2020-07-13 20:33:20 +08:00
package tools
import "strconv"
func Int64ToString(e int64) string {
return strconv.FormatInt(e, 10)
}