Newer
Older
programs / koki / while.rb
#!/usr/bin/env ruby
apple=0
while apple<198 do
  puts apple
  apple += 1
  sleep(0.1)
  
end