Skip to content

Instantly share code, notes, and snippets.

@themonster2015
Created September 27, 2016 09:09
Show Gist options
  • Save themonster2015/c519fc6731f294ed61eff18127274e3a to your computer and use it in GitHub Desktop.
Save themonster2015/c519fc6731f294ed61eff18127274e3a to your computer and use it in GitHub Desktop.
if (5==5) && (1!=2)
puts "You are wonderful"
else
3.times do
puts "You Suck!"
end
end
def choose
puts "Do you like programming? Yes, no, or maybe 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
number = 0
while (number <= 10) do
puts "this time the number is " + number
number+=1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment