Skip to content

Instantly share code, notes, and snippets.

@ThisBenRoberts
Created August 5, 2015 21:57
Show Gist options
  • Select an option

  • Save ThisBenRoberts/a76776f11294db6e0ad2 to your computer and use it in GitHub Desktop.

Select an option

Save ThisBenRoberts/a76776f11294db6e0ad2 to your computer and use it in GitHub Desktop.
my_cf_project_final_copy_ex_22
if (5+5==10)
puts "this is true"
else
puts "this is false"
end
def choose
puts "Do you like programming? Yes or no please."
choice = gets.chomp
if (choice.downcase == "yes")
puts "That\'s great!"
elsif (choice.downcase == "no")
puts "That\'s too bad!"
else
puts "That wasn't a yes or no."
end
end
choose
# 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 # don’t forget your 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