lua-users home
lua-l archive

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


> Or:
>    function (x, y, z) x + y * z end

That's very hard to parse. Consider
    function (x, y, z) x[<complicated expression>][z] end
versus
    function (x, y, z) x[<complicated expression>](z) return f(x,y,z) end
which is valid right now.