Skip to content

Instantly share code, notes, and snippets.

@AJFaraday
Created July 6, 2017 08:13
Show Gist options
  • Save AJFaraday/7336e816028b4cec61de4067feec32ed to your computer and use it in GitHub Desktop.
Save AJFaraday/7336e816028b4cec61de4067feec32ed to your computer and use it in GitHub Desktop.
Unexpected Else (ruby)
def meth
if false
puts 'not here'
end
else
puts 'WAT'
end
# warning: else without rescue is useless
meth
# WAT
def meth2
if true
puts 'yes here'
end
else
puts 'WAT'
end
# warning: else without rescue is useless
meth2
# yes here
# WAT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment