Day 8 - Interfaces
Go Interfaces and Type Assertion Tutorial
Introduction to Interfaces in Go
In Go, an interface stores a list of method signatures without their implementation. We only declare the method names, parameters, and return types.
type SampleInterface inter...
gosprint90.hashnode.dev5 min read