I wasn't really sure how to title the question, but consider the following lua code:
print(function ()
s=""
for i=1,10 do
s=s..tostring(i)
end
return s
end)
But this prints only the function address, since function () returns a closure. Is there a way to evalute the anonymous function? Like in scheme where i can emprace the lambda in additional brackets?
((lambda ()(display "Hello World")))
Of course i know, i could define the function beforehand and call it later, but i was just curious if this is possible in lua. Thanks in advance for all replys