blob: c167b0933df751a8d34e65639ee9f7092b9b831e [file] [log] [blame]
Neal Norwitz328f3382003-12-13 22:43:34 +00001"""This is a test"""
2
3from __future__ import *
4
5def f(x):
6 def g(y):
7 return x + y
8 return g
9
10print f(2)(4)