Skip to Content
Lua Quick Start Guide
book

Lua Quick Start Guide

by Gabor Szauer
July 2018
Beginner
202 pages
5h 42m
English
Packt Publishing
Content preview from Lua Quick Start Guide

Introduction to tables

Tables are the only data structure available in Lua. The table data structure is powerful enough to implement other data structures. Tables can also be used to extend the Lua language with a class system, or even a mixin system, which is an alternative to class-based composition. So, what is a table?

Tables are basically a dictionary or array. A table is a key-value pair. If the keys to the table are numeric, the table represents an array. If the keys are non-numeric or mixed, the table is a dictionary. Anything can be used as a key in a table, other than nil. Anything, including nil, can be a value.

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Beginning Lua Programming

Beginning Lua Programming

Kurt Jung, Aaron Brown
Vim Masterclass

Vim Masterclass

Jason Cannon

Publisher Resources

ISBN: 9781789343229Supplemental Content