lua-users home
lua-l archive

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


Hello lua-l,

This code:

function dest( ... ) print( arg.n ) end
function source() return 1,2,3,4 end
dest( source() )

Outputs this:
1

Instead of this:
4

Is there some way to get this syntax to work?  If not, perhaps this could be
added to the wish-list for the next version?

ashley