Introduction
This lesson explains how methods and interfaces in Go work using an example
We'll cover the following...
Methods in Go
While technically Go isn’t an Object Oriented Programming language, types and methods allow for an object-oriented style of programming. The big difference is that Go does not support type inheritance (mechanism of ...