Files
2026-08-19 16:40:57 -04:00

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") }