Skip to content

Instantly share code, notes, and snippets.

@steamgeek7
Last active May 6, 2019 01:44
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 steamgeek7/bd71932be82d6d85d58af0e2fecf5ca3 to your computer and use it in GitHub Desktop.
Save steamgeek7/bd71932be82d6d85d58af0e2fecf5ca3 to your computer and use it in GitHub Desktop.
Ruby
def greeting
puts "Please enter your name:"
name = gets.chomp
puts "Hello" + " " + name
end
greeting
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
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
(0..10).each do |n|
p "the new number is #{n}"
end
end # don’t forget your end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment