aboutsummaryrefslogtreecommitdiff
path: root/tests/tests.go
blob: 06d0a8d7ab5262e05d98928ecd5842b2e1efdcda (plain)
1
2
3
4
5
6
7
8
package tests

import "fmt"

func DoThis(str string) string {
  fmt.Println(str)
  return fmt.Sprintf("This is the string returned: %v", str)
}