go-by-test/shapes/shapes.go

10 lines
164 B
Go
Raw Normal View History

package shapes
func Perimeter(width, height float64) float64 {
return 2 * (width + height)
}
func Area(width, height float64) float64 {
return width * height
}