rubyx/test/bench/ruby/hello.rb

7 lines
90 B
Ruby
Raw Normal View History

2015-11-24 15:33:16 +02:00
counter = 100000;
2015-11-24 15:33:16 +02:00
while(counter > 0) do
puts "Hello there"
counter = counter - 1
end