// https://gobyexample.com/interfaces // package main import ( "fmt" "math" "reflect" ) type Geometry interface { Area() float64 perim() float64 } type rect struct { width, height float64 } type circle struct { radius float64 } func (r rect) Area() float64 { return r.width * r.height } func (r rect) perim() float64 { return 2*r.width + 2*r.height } func (c circle) Area() float64 { return math.Pi * c.radius * c.radius } func (c circle) perim() float64 { return 2 * math.Pi * c.radius } func measure(g Geometry) { fmt.Println(g) fmt.Println(g.Area()) fmt.Println(g.perim()) } func main() { r := rect{width: 3, height: 4} c := circle{radius: 5} var b Geometry = rect{} fmt.Println(reflect.TypeOf(b).PkgPath()) measure(r) measure(c) }