learn-go-with-tests/shapes/shapes.go
2025-02-01 21:18:14 -05:00

10 lines
154 B
Go

package shapes
type Rectangle struct {
Width float64
Height float64
}
func Perimeter(rec Rectangle) float64 {
return 2 * (rec.Width + rec.Height)
}