Skip to content

Instantly share code, notes, and snippets.

@arwagner
Created November 10, 2011 01:00
Show Gist options
  • Save arwagner/1353746 to your computer and use it in GitHub Desktop.
Save arwagner/1353746 to your computer and use it in GitHub Desktop.
class Foo
def not
3
end
end
Foo.new.instance_eval { not } #=> syntax error, unexpected '}'
Foo.new.instance_eval { not() } #=> true
Foo.new.send :not #=> 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment