Created
August 4, 2014 17:42
-
-
Save patrickserrano/2f639b74e47e878dd68b to your computer and use it in GitHub Desktop.
Quick Ruby for loop to print 500 sequential email addresses
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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