← All examples Circle area Go Classes & methods method with receiver Flowchart (ISO 5807) Flowchart Structogram StartReturn 3.14159 * c.r * c.rEndFigure 1 — Circle.Area Source code func (c Circle) Area() float64 { return 3.14159 * c.r * c.r } Open in the editor