Lake icon indicating copy to clipboard operation
Lake copied to clipboard

call `L` with multiple argumens.

Open moteus opened this issue 11 years ago • 1 comments

Now L("a","b","c") produce {"a"} I fix this like:

local function LL_impl(...)
    local res = {}
    for i = 1, select('#', ...) do
        local arg = select(i, ...)
        res[i] = L_impl(arg)
    end
    return L_impl(res)
end

L = LL_impl

moteus avatar Aug 28 '13 09:08 moteus

ping

moteus avatar Oct 18 '13 11:10 moteus