Skip to content

Instantly share code, notes, and snippets.

@Socratic1
Created September 2, 2015 16:29
Show Gist options
  • Save Socratic1/17910954e1bf0a409c9a to your computer and use it in GitHub Desktop.
Save Socratic1/17910954e1bf0a409c9a to your computer and use it in GitHub Desktop.
# #3.times do
# # puts "Hello!"
# #end
# number = 0
# while (number <= 10) do # while this condition is true, do...
# p "the number is now #{number}" # whatever is in this code block
# number += 1 # short for number = number + 1
# end
(0..10).each do |n|
p "the new number is #{n}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment