blob: 05896618711d376e469c582c0c1405b83a0e841c [file] [log] [blame]
Jeremy Hylton62e2c7e2001-02-28 17:48:06 +00001"""This is a test"""
2from __future__ import nested_scopes
3
4def f(x):
5 def g(y):
6 return x + y
7 return g
8
9print f(2)(4)