lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Am 07.10.2013 04:05 schröbte Philipp Janda:

The current implementation has other nice properties compared to more
recent proposals, e.g.:

[...]

... or that one:

    local t1 = { 1, 2, 3 }
    local t2 = {}
    for k,v in pairs( t1 ) do t2[ k ] = v end
    assert( #t1 == #t2 )