RE: [IronPython] Nested Functions

2005-09-28 Thread Martin Maly
Closures are not yet supported by IronPython. I am fixing this as we speak :) From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kirk OlynykSent: Friday, September 23, 2005 3:34 PMTo: users-ironpython.com@lists.ironpython.comSubject: [IronPython] Nested Functions # This

[IronPython] Nested Functions

2005-09-28 Thread Kirk Olynyk
# This works on CPython but not on IronPython 9.2   def f (i):     def g ():     return i+1     return g() print f(3) ___ users-ironpython.com mailing list users-ironpython.com@lists.ironpython.com http://lists.ironpython.com/listi