[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Tables?
- From: "Aaron Brown" <aaron-lua@...>
- Date: Tue, 2 Aug 2005 12:18:02 -0400
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