lua-users home
lua-l archive

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


Posti Laatikko wrote:
Since lua is intepreted language i was wondering does variables & funtions
names effect execution speed if names are long?

Nope - they're just strings which are interned and then
compared/hashed by pointer.

--adam