[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Next Version of Lua?
- From: Peter Cawley <lua@...>
- Date: Wed, 10 Jun 2009 12:53:56 +0100
On Wed, Jun 10, 2009 at 12:40 PM, Henk Boom<henk@henk.ca> wrote:
> local tbl = {... ..., 7, 8, 9}
>
> would be a bit strange, no?
I don't know, I could grow to like it.
Consider the following two hypothetical code lines:
local tbl = {1, 2, 3, ..., 7, 8, 9}
local tbl = {1, 2, 3, ... ..., 7, 8, 9}
The double ellipsis can be read as a larger insertion (i.e. not just
one element) into the list than the single ellipsis.