summaryrefslogtreecommitdiff
path: root/sample/list2.rb
blob: 1c2ca08150edcaf2d8c373812adc1f6b6ce39d9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Linked list example -- short version
class Point
  def init_object(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")