Skip to content

Instantly share code, notes, and snippets.

@patrickserrano
Created August 4, 2014 17:42
Show Gist options
  • Save patrickserrano/2f639b74e47e878dd68b to your computer and use it in GitHub Desktop.
Save patrickserrano/2f639b74e47e878dd68b to your computer and use it in GitHub Desktop.
Quick Ruby for loop to print 500 sequential email addresses
for i in 1...501
puts "example#{i}@example.com"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment