Skip to content

Instantly share code, notes, and snippets.

@dogweather
Forked from kasiapryczek/program2.rb
Last active September 18, 2015 01:37
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 dogweather/79085b0049a48da7927a to your computer and use it in GitHub Desktop.
Save dogweather/79085b0049a48da7927a to your computer and use it in GitHub Desktop.
if (5 + 5 == 10)
puts 'this is true'
else
puts 'this is false'
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 'Too bad...'
when 'maybe'
puts 'Glad you are giving it a chance!'
else
puts 'I have no idea what that means'
end
end
choose
(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