Skip to content

Instantly share code, notes, and snippets.

@rahulkp220
Created June 26, 2016 15:16
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 rahulkp220/afb7d3dec788fe725f72d7324f8e4343 to your computer and use it in GitHub Desktop.
Save rahulkp220/afb7d3dec788fe725f72d7324f8e4343 to your computer and use it in GitHub Desktop.
def double(function):
def wrapper(*args,**kwargs):
return 2 * function(*args,**kwargs)
return wrapper
@double
def adder(x,y):
return x + y
print adder(1,3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment