Interfaces

Use interfaces effectively. Learn the go way.

Define your own

type Greeter interface { // Greet returns a greeting in the given language. Greet(lang string, who string) string }