Skip to content

Instantly share code, notes, and snippets.

@uberbrady
Created October 23, 2017 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uberbrady/efd438bc088baeb5b2e2545710fb8a6e to your computer and use it in GitHub Desktop.
Save uberbrady/efd438bc088baeb5b2e2545710fb8a6e to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
a=[]
1_000_000.times do |what|
a<< "froopty@blorp.norb#{what}"
p "ten thousand: #{what}" if what % 10_000 == 0
end
p "A length is: #{a.count}"
p a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment