In [15]:
def add(*x):
local = x
def addInner(y):
return x + y
return addInner
In [29]:
def add(x, y):
return x + y
@add(1, 2)
In [ ]: