7 lines
91 B
Go
7 lines
91 B
Go
package tools
|
|
|
|
import "strconv"
|
|
|
|
func IntToString(e int) string {
|
|
return strconv.Itoa(e)
|
|
} |