#interfaces-go
Read more stories on Hashnode
Articles with this tag
According to https://go.dev/tour/methods/9, an interface is a collection of method signatures. type Shape interface{ area() float64 } As you can...