This commit is contained in:
YuleiLan
2020-07-13 20:33:20 +08:00
commit cca0845f24
106 changed files with 17580 additions and 0 deletions

7
tools/int.go Normal file
View File

@@ -0,0 +1,7 @@
package tools
import "strconv"
func IntToString(e int) string {
return strconv.Itoa(e)
}