Re: An Idea: Proxying
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: An Idea: Proxying
- From: Griffin Rock <abcq2@...>
- Date: 2020年1月30日 02:18:42 +0000
oops, I said:
> loop(function (meta) ...
but forgot the implementation of loop (though you probably guessed it):
function loop (f)
local function g(...)
f(...)
return g
end
return g
end