Skip to content

Instantly share code, notes, and snippets.

@Harsimran1
Last active March 7, 2021 12:01
Show Gist options
  • Save Harsimran1/2b4410e5eaf290bd6c89693a81c71ca8 to your computer and use it in GitHub Desktop.
Save Harsimran1/2b4410e5eaf290bd6c89693a81c71ca8 to your computer and use it in GitHub Desktop.
Golang Interface Definition Example
type Vehicle interface {
Drive()
}
// Car implements the Vehicle interface simply by implementing method Drive.
type Car struct{}
func (c Car) Drive() {
fmt.Println("Drive")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment