Skip to content

Instantly share code, notes, and snippets.

@hakanensari
Created October 23, 2012 09:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hakanensari/3937759 to your computer and use it in GitHub Desktop.
Save hakanensari/3937759 to your computer and use it in GitHub Desktop.
Can't instance_exec curried proc in JRuby?
foo = lambda { |x, y| x + y }
instance_exec 1, 2, &foo # => 3
bar = foo.curry.call(1)
instance_exec 2, &bar # NameError: undefined local variable or method `arity' for main:Object
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment