about summary refs log tree commit diff
path: root/tools/gotest/lib.go
blob: 0aeebb2aea697279ab19d088d5c9ed1511041705 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package somelib

import "fmt"

func Name() string {
	return "edef"
}

func Greet(s string) string {
	return fmt.Sprintf("Hello %s", s)
}