Skip to content

Instantly share code, notes, and snippets.

@therod
Created March 30, 2017 16:34
Show Gist options
  • Save therod/ec6a954b132596cb5ca2f0a84cc80e16 to your computer and use it in GitHub Desktop.
Save therod/ec6a954b132596cb5ca2f0a84cc80e16 to your computer and use it in GitHub Desktop.
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