Skip to content

Instantly share code, notes, and snippets.

@AttyC
Created June 8, 2015 13:20
Show Gist options
  • Select an option

  • Save AttyC/a6aa320f900ec3140b72 to your computer and use it in GitHub Desktop.

Select an option

Save AttyC/a6aa320f900ec3140b72 to your computer and use it in GitHub Desktop.
Ruby loops and conditionals
if (5+5==10)
puts "this is true"
else
puts "this is false"
end
#!/usr/bin/ruby
def choose
puts "Do you like programming? Yes or no, please."
choice = gets.chomp
case choice.downcase
when "yes"
puts "That's great!"
when "no"
puts "That's too bad!"
when "maybe"
puts "Glad you are giving it a chance!"
else
puts "I have no idea what that means!"
end
end
choose
#!/usr/bin/ruby
#3.times do
# puts "hello"
#end
#number = 0
#while (number <= 10) do
# p "The number is now #{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