Skip to content

Instantly share code, notes, and snippets.

@nessamurmur
Created April 22, 2015 23:09
Show Gist options
  • Save nessamurmur/820beace73661303b3de to your computer and use it in GitHub Desktop.
Save nessamurmur/820beace73661303b3de to your computer and use it in GitHub Desktop.
Classes as partially applied functions
class Add
attr_reader :x
def initialize(x)
@x = x
end
def add(y)
x + y
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment