lua-users home
lua-l archive

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


> one of the criticisms about Lua is the way it uses globals (using an hash table instead of a regular array and so performance suffers when globals are accessed).

I think this is an unfair (or more likely an uninformed) criticism.
Practically any dynamic language uses something like hash (or worse) to
access global variables.

-- Roberto