Skip to content

Instantly share code, notes, and snippets.

@mark
Created November 23, 2011 16:46
Show Gist options
  • Save mark/1389177 to your computer and use it in GitHub Desktop.
Save mark/1389177 to your computer and use it in GitHub Desktop.
Who needs if/then/else statements?
class Object
def truthy
self && yield
self
end
def falsy
self || yield
self
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment