lua-users home
lua-l archive

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


>What is a valid lua variable name?

   Identifiers in Lua can be any string of letters, digits, and
   underscores, not beginning with a digit. This coincides with the
   definition of identifiers in most languages.

   http://www.lua.org/manual/5.0/manual.html#2.1

--lhf