summaryrefslogtreecommitdiff
path: root/sample/list2.rb
blob: c2e9bca75304149f626fc5842e431a8eea375ad5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Linked list program -- short version
class Point
  def Point.new(x, y)
    super.init(x, y)
  end

  def init(x, y)
    @x = x; @y = y
    self
  end

  def to_s
    sprintf("%d@%d", @x, @y)
  end
end
    
list1 = [10, 20, Point.new(2, 3), Point.new(4, 5)]
list2 = [20, Point.new(4, 5), list1]
print("list1:\n", list1.join("\n"), "\n")
print("list2:\n", list2.join("\n"), "\n")