Skip to content

Instantly share code, notes, and snippets.

@videlais
Created April 14, 2015 02:36
Show Gist options
  • Save videlais/ce73b7f77211e0810dc4 to your computer and use it in GitHub Desktop.
Save videlais/ce73b7f77211e0810dc4 to your computer and use it in GitHub Desktop.
i = 20
loop do
i -= 1
puts "#{i}"
break if i <= 0
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment