meow purrr :3

This commit is contained in:
amy 2024-06-08 21:58:43 +03:30
parent 3fb5fc9033
commit aff3757618
5 changed files with 93 additions and 0 deletions

View file

@ -0,0 +1,9 @@
package helper
func Ender() string {
return string(rune(0))
}
func ByteWithEnd(str string) []byte {
return append([]byte(str), byte(0))
}