编写UtilsPad, UtilsInterpreterPuse函数

This commit is contained in:
chenxinquan 2022-11-07 11:26:07 +08:00
parent 1700692398
commit 586f3c4290
1 changed files with 8 additions and 0 deletions

View File

@ -62,3 +62,11 @@ func UtilsToU32(s string) int {
/* */
return int(binary.LittleEndian.Uint32(bytes))
}
func UtilsPad(length int) string {
return string.Repeat("a", length)
}
func UtilsInterpreterPuse() {
fmt.Scanln()
}