go-by-test/shapes/shapes.go

15 lines
211 B
Go
Raw Normal View History

package shapes
2024-09-11 06:58:04 +00:00
type Rectangle struct {
Width float64
Height float64
}
2024-09-11 06:58:04 +00:00
func Perimeter(r Rectangle) float64 {
return 2 * (r.Width + r.Height)
}
func Area(r Rectangle) float64 {
return r.Width * r.Height
}