Skip to content

Instantly share code, notes, and snippets.

@hannestyden
Created October 26, 2013 21:17
Show Gist options
  • Save hannestyden/7174650 to your computer and use it in GitHub Desktop.
Save hannestyden/7174650 to your computer and use it in GitHub Desktop.
module Utils; def r; yield rescue $!; end; end; include Utils
def i
:i
end
def I
:I
end
r{i} # => :i
r{i()} # => :i
r{I} # => #<NameError: uninitialized constant I>
r{I()} # => :I
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment