lua-users home
lua-l archive

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


Ron Hudson wrote:

> How can I list a table if I don't know the actual index
> values...

for key, val in pairs(database) do
  print(key .. " --> " .. val)
end

-- 
Aaron