7 lines
180 B
Go
7 lines
180 B
Go
package pkg
|
|
|
|
// Greet is here so the indexer has a real symbol to find.
|
|
func Greet(name string) string { return "hello, " + name }
|
|
|
|
func Caller() string { return Greet("gitsrv") }
|