summaryrefslogtreecommitdiff
path: root/benchmark/bmx_temp.rb
blob: dc45f5a153c6565b755de062f7e897030397d451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57

i=0
while i<20000000
  x = 1 # "foo"
  i+=1
end

__END__

class Range
  def each
    f = self.first
    l = self.last
    while f < l
      yield
      f = f.succ
    end
  end
end

(0..10000000).each{
}

__END__
class Fixnum_
  def times
    i = 0
    while i<self
      yield(i)
      i+=1
    end
  end
end

10000000.times{
}
__END__

ths = (1..10).map{
  Thread.new{
    1000000.times{
    }
  }
}
ths.each{|e|
  e.join
}

__END__
$pr = proc{}
def m
  $pr.call
end

1000000.times{|e|
  m
}