[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re:
- From: Taj Khattra <taj.khattra@...>
- Date: Thu, 30 Oct 2003 23:47:57 -0800
> How do I create the function closure with the value v has when the
> closure is created?
for k,v in t do local _v=v; f=function() print(_v) end end
-taj