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

LuaRef and tables

A LuaRef variable can point to any type of data—even a table! When a LuaRef variable points to a table, it can be indexed very naturally using brackets ([]). Consider the following Lua code:

velocity = {    x = 7,    y = 0,    units = "miles"}velocity.debug = function()    print (velocity.x .. ", " .. velocity.y .. " " .. units .. " / hour")end

We can access, and even change, any variable located in the velocity table by using a LuaRef object. The following code sample demonstrates this:

LuaRef v = getGlobal(L, "velocity");v["y"] = 6v["units"] = "km"v["debug"]();
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