7 lines
104 B
Go
7 lines
104 B
Go
![]() |
package tools
|
||
|
|
||
|
import "strconv"
|
||
|
|
||
|
func Int64ToString(e int64) string {
|
||
|
return strconv.FormatInt(e, 10)
|
||
|
}
|