summaryrefslogtreecommitdiff
path: root/sample/list2.rb
blob: 1d71affc1b61f2737d1a70f2af5a18f1f8bf0b55 (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 initialize(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")
0'>2014-02-15probes_helper.h (RUBY_DTRACE_HOOK): correct type for _idnormal 2012-12-11probes_helper.h: RUBY_DTRACE_HOOKnobu 2012-12-01adjust style.nobu 2012-12-01* variable.c (rb_class_path_no_cache): add a function to get the classtenderlove 2012-11-29* vm.c: add a return hook when a method raises an exception.tenderlove 2012-11-28* probes.d: Change function-entry probe to method-entry.tenderlove 2012-11-18* vm_core.h, probes_helper.h (RUBY_DTRACE_FUNC_ENTRY_HOOK,ngoto