rubyx/test/bench/ruby/hello.rb

7 lines
90 B
Ruby
Raw Normal View History

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