Skip to content

Instantly share code, notes, and snippets.

@zaagan
Created January 27, 2020 15:47
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 zaagan/6b1ad47dc281489da95b9b917b6ee3e7 to your computer and use it in GitHub Desktop.
Save zaagan/6b1ad47dc281489da95b9b917b6ee3e7 to your computer and use it in GitHub Desktop.
Ruby Basics - If Elsif
response = :greeting
if response == :greeting
puts "Hello !"
elsif response == :shout
puts "Don't yel"
else
puts "Huh ?"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment