10 lines
164 B
Go
10 lines
164 B
Go
|
package shapes
|
||
|
|
||
|
func Perimeter(width, height float64) float64 {
|
||
|
return 2 * (width + height)
|
||
|
}
|
||
|
|
||
|
func Area(width, height float64) float64 {
|
||
|
return width * height
|
||
|
}
|