feat: some testing code lol

This commit is contained in:
Zhongheng Liu 2024-10-20 22:43:51 +03:00
commit 1ef0757412
Signed by: steven
GPG key ID: DC8F48E7B4C40905
5 changed files with 19 additions and 28 deletions

8
tests/tests.go Normal file
View file

@ -0,0 +1,8 @@
package tests
import "fmt"
func DoThis(str string) string {
fmt.Println(str)
return fmt.Sprintf("This is the string returned: %v", str)
}