lua-users home
lua-l archive

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


Matthias Gall wrote:
> 
> Is there a way to remove a table entry? For example, I am using a table like
> this
>     MyTable.Value1
>     MyTable.Foo
>     MyTable.Bar
> and want to remove MyTable.Foo completely and work on. Any ideas?

MyTable.Foo = nil

Ciao, ET.