Created
February 12, 2016 20:43
-
-
Save ehermes/23f8fa80156776f3f8d2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def make_adder(x): | |
| def add_x(y): | |
| return x + y | |
| return add_x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment