Newer
Older
Ruby / while.rb
@ITO Tenryu ITO Tenryu on 2 Aug 90 bytes 2025-08-02 15:53:46
#!/usr/bin/env ruby
# -*-cobing: utf-8

i=1
while i <= 10000000

  
  puts i
  i += 1
end