Table (type)

From ComputerCraft Wiki
Revision as of 22:42, 28 November 2012 by AfterLifeLochie (Talk | contribs) (NeedsWork -> Stub)

Jump to: navigation, search
This page is a stub.
Please help us by expanding it.

A table is a basic Lua type that is an associative array, or map, that associates keys with values. It can be indexed either with numbers, like a plain array, or with any kind of value (except nil), such as a string.

See Tables