2015-11-24 14:33:16 +01:00
|
|
|
|
2019-07-31 20:18:03 +02:00
|
|
|
counter = 10000;
|
2015-11-24 14:33:16 +01:00
|
|
|
while(counter > 0) do
|
|
|
|
puts "Hello there"
|
2019-07-30 12:55:29 +02:00
|
|
|
# roughly 4 times slower with this, which is like rubyx
|
2019-07-31 20:18:03 +02:00
|
|
|
STDOUT.flush
|
2015-11-24 14:33:16 +01:00
|
|
|
counter = counter - 1
|
|
|
|
end
|