learn-go-with-tests/shapes/shapes.go

11 lines
154 B
Go
Raw Permalink Normal View History

2025-02-02 02:18:14 +00:00
package shapes
type Rectangle struct {
Width float64
Height float64
}
func Perimeter(rec Rectangle) float64 {
return 2 * (rec.Width + rec.Height)
}