[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.2.0 (rc6) now available
- From: Daurnimator <quae@...>
- Date: Thu, 8 Dec 2011 13:31:15 +1100
On 8 December 2011 13:22, Luiz Henrique de Figueiredo
<lhf@tecgraf.puc-rio.br> wrote:
>> I still wonder why package.path/cpath are strings rather than tables...
>
> If you have a table of paths, it's easy to convert it to a string with
> table.concat(t,";")
>
Its not an issue of conversion; but of modification (adding an entry
is much easier and sensible with table.insert; and easy to remove with
table.remove)
Having a table really does seem the sensible behaviour.