lua-users home
lua-l archive

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


RLake@oxfam.org.uk wrote:
> 
> local function f(args1) body1 end , function g(args2) body2 end
>
> local f, g
> f = function(args1) body1 end
> g = function(args2) body2 end
> 
> which would handle mutual recursion properly (unlike Edgar's proposal,
> which wouldn't).

The first pure technical point against my proposal and in fact such a
strong one that I redraw it unless I find a proper solution for this
problem.

>[...]
> and subtle (the comma could easily be ignored in the absence of good
> margins and syntax colouring.)

I 100% agree.

Thanks, ET.