Newer
Older
programs / karin / while.rb
#!/usr/bin/env ruby

apple = 7
while apple <= 77777 do
  puts apple
  apple += 777
  sleep(7.77)
end