blob: c167b0933df751a8d34e65639ee9f7092b9b831e [file] [log] [blame]
"""This is a test"""
from __future__ import *
def f(x):
def g(y):
return x + y
return g
print f(2)(4)