[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: RE: more newbie questions: #include, table GC/re-use
- From: Mike Spencer <mike@...>
- Date: Thu, 29 May 2003 18:28:03 +0100
sorry about the previous overly long post, something just occurred to me, is
this valid?...
-- create a new table...
table = {}
-- fill table with garbage...
table.something = 'something'
table.number = 1
table[1] = 1.99
table[2].number = 999
-- empty table again...
table = {}
-----Original Message-----
From: Mike Spencer [mailto:mike@creative-asylum.com]
Sent: 29 May 2003 18:11
To: Lua list (E-mail)
Subject: more newbie questions: #include, table GC/re-use
hello again,
just a couple more things i would like to know:
--- SNIP! ---