ferry/tools/int.go

7 lines
91 B
Go
Raw Permalink Normal View History

2020-07-13 20:33:20 +08:00
package tools
import "strconv"
func IntToString(e int) string {
return strconv.Itoa(e)
}