ide/greetservice.go

8 lines
125 B
Go
Raw Normal View History

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