Struct
type Rectangle struct {
Length, Width float64
}
Struct Rectangle implicitly implements interface Shape by implementing all of its methods.
Comments
type Rectangle struct {
Length, Width float64
}
Struct Rectangle implicitly implements interface Shape by implementing all of its methods.