MCPcopy Create free account
hub / github.com/mmcgrana/gobyexample / rect

Struct rect

examples/methods/methods.go:7–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5import "fmt"
6
7type rect struct {
8 width, height int
9}
10
11// This `area` method has a _receiver type_ of `*rect`.
12func (r *rect) area() int {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected