Hello world
This section demonstrates how to solve a common problem using generics:
- The problem: a common problem encountered all too often in Go
- Local variables: a solution using temporary, local variables
- Typed helper functions: a solution using typed, helper functions
- A generic solution: an elegant solution using generics
Next: The problem