lua-users home
lua-l archive

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


Luiz Henrique de Figueiredo wrote:
What name would you expect for the table created by the code below?

  a = {}
  b = a
  c = b
  a = nil
I'm thinking about the cases for folks writing classes etc. Its clear there are cases where a sensible autogenerated name isn't
going to be easy (unless you just default to filename_lineNumber).

Stephen