ferry/tools/int.go
YuleiLan cca0845f24 new
2020-07-13 20:33:20 +08:00

7 lines
91 B
Go

package tools
import "strconv"
func IntToString(e int) string {
return strconv.Itoa(e)
}