lua-users home
lua-l archive

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


Thanks. The "const" is part of a class definition. I left
that bit out for simplification, but the distinction may be
important. Can I still access the value through _G[] ?


----- Original Message -----
From: "Ketmar Dark" <ketmar@ic.km.ua>
To: <lua@bazar2.conectiva.com.br>
Sent: Friday, June 01, 2007 8:18 AM
Subject: Re: Translate String of Variable Name into Variable
Value


On Fri, 1 Jun 2007 07:02:49 -0700 (PDT)
spam@bitlet.com wrote:

>  const foo = 4
>
>  compare_label("foo",4)
>
> is true.
>
> TIA for help. I'm missing something obvious, aren't I?

there are no "consts" in Lua, but you can emulate constants
with proxy
tables. and you can do something like:

function CompareVar (varname, value)
  return _G[varname] == value;
end;

this is identical to simple "varname == value" construction.