Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
We learned in Chapter 6 that it is possible to define singleton methods—methods that are defined for only a single object rather than a class of objects. To define a singleton method sum on an object Point, we’d write:
def Point.sum # Method body goes here end