1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* benchmark/bm_loop_generator.rb: added.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13250 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2007-08-24 15:51:33 +00:00
parent 028919d222
commit 487a7da22d
2 changed files with 18 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sat Aug 25 00:49:44 2007 Koichi Sasada <ko1@atdot.net>
* benchmark/bm_loop_generator.rb: added.
Sat Aug 25 00:22:31 2007 Koichi Sasada <ko1@atdot.net>
* prelude.rb: added. run this script on startup.

View file

@ -0,0 +1,14 @@
max = 600000
if defined? Fiber
gen = (1..max).each
loop do
gen.next
end
else
require 'generator'
gen = Generator.new((0..max))
while gen.next?
gen.next
end
end