lua-users home
lua-l archive

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


at 2.48 (local time) I wrote:
function output(...)
   for i = 1, select('#',...) do
      local v = select(i,...)
      assert(output_funs[type(v)], "Bad value to output()") (v)
   end
end

at 2.49 Greg Falcon wrote:
 function output(...)
   for i = 1, select('#', ...) do
     local v = select(i, ...)
     assert(output_funs[type(v)], "Bad value to output()") (v)
   end
 end

given mail transit times we must sent almost simultaneously - does lua now suport quantum entanglement ?

Adrian