Created
March 30, 2017 16:34
-
-
Save therod/ec6a954b132596cb5ca2f0a84cc80e16 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
count = 0 | |
loop do | |
unless count == 100001 | |
puts count | |
count += 1 | |
else | |
break | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment