Skip to content

Instantly share code, notes, and snippets.

@matstc
Created October 13, 2014 13:22
Show Gist options
  • Save matstc/f27e3301e243c10fd8e9 to your computer and use it in GitHub Desktop.
Save matstc/f27e3301e243c10fd8e9 to your computer and use it in GitHub Desktop.
Example of Not Using a Guard Clause
def divide x, y
if y == 0
raise "Cannot divide by zero"
else
x / y
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment