class Point

Attributes

x[R]
y[R]

Public Class Methods

new(x, y) click to toggle source
# File examples/point.rb, line 10
def initialize(x, y)
  @x, @y = x, y
end