Skip to content

Instantly share code, notes, and snippets.

@zaagan
Created January 27, 2020 15:50
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/ebd08a68e0cb924d87df139b96004207 to your computer and use it in GitHub Desktop.
Save zaagan/ebd08a68e0cb924d87df139b96004207 to your computer and use it in GitHub Desktop.
Ruby Basics - Inverse Predicate
response = :greeting
if response != :greeting
puts 'Hey'
# ignore
else
puts 'Ok'
end
# Similar to
unless response == :greeting
puts 'Hey'
# ignore
else
puts "Ok"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment