lua-users home
lua-l archive

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


On 6 February 2013 03:04, YuanLin <yuanlin2008@hotmail.com> wrote:
> local a;
> a = function() end;

That would make a special case of the following
local a
a = function() if Something then a() end

It has been written somewhere by Roberto IIRC that the VM is not fully
optimised.

--Liam