Skip to content

Instantly share code, notes, and snippets.

@prakashpandey
Created January 13, 2019 18:32
Show Gist options
  • Save prakashpandey/45f52119f9bbdc37f65cf9fe45c8308b to your computer and use it in GitHub Desktop.
Save prakashpandey/45f52119f9bbdc37f65cf9fe45c8308b to your computer and use it in GitHub Desktop.
define interface in golang
// Geometry interface
type Geometry interface {
area() float32
parameter() float32
numOfSides() int
}
// Color interface
type Color interface {
getColor() string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment