lua-users home
lua-l archive

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


>   What people seem to be asking for is:
> 
> 	Platonic essence	Lua	NeoLua
> 	nothing			nil	empty [1]
> 	nil			nil	nil

How do you distinguish between these two cases?

       x = function() end
       y = function() return nothing end

-- Roberto