Ruby does not have a Python __doc__ equivalent. They often use Rdoc Format for documentation, for example:
# For example, a square or circle.
class Shape
# A horizontal position.
def x
end
# A vertical position.
def y
end
end
Ruby does not have a Python __doc__ equivalent. They often use Rdoc Format for documentation, for example:
# For example, a square or circle.
class Shape
# A horizontal position.
def x
end
# A vertical position.
def y
end
end