Skip to content

Instantly share code, notes, and snippets.

@zaagan
Created January 27, 2020 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zaagan/647de1bc9cde32f00e0773dde6251f00 to your computer and use it in GitHub Desktop.
Save zaagan/647de1bc9cde32f00e0773dde6251f00 to your computer and use it in GitHub Desktop.
Ruby Basics - Upto & Downto
1.upto 5 do |i|
puts i
end
# 1
# ...
# 5
5.downto 1 do |i|
puts i
end
# 5
# ...
# 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment