Files

8 lines
125 B
Go
Raw Permalink Normal View History

2026-07-13 13:02:23 +00:00
package main
type GreetService struct{}
func (g *GreetService) Greet(name string) string {
return "Hello " + name + "!"
}