Created
April 14, 2019 09:33
-
-
Save jeffotoni/aa4b2268c46c87cdd0bed1a7d78df8cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "fmt" | |
import "math" | |
type Gemetric 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} | |
measure(r) | |
measure(c) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment