MCPcopy Create free account
hub / github.com/derekbanas/Go-Tutorial / rectangle

Struct rectangle

hellogo.go:130–132  ·  view source on GitHub ↗

This struct has a function associated

Source from the content-addressed store, hash-verified

128
129// This struct has a function associated
130type rectangle struct {
131 length, height float64
132}
133
134func (r rectangle) Area() float64 {
135 return r.length * r.height

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected