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