Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Lua Quick Start Guide

You're reading from   Lua Quick Start Guide The easiest way to learn Lua programming

Arrow left icon
Product type Paperback
Published in Jul 2018
Publisher Packt
ISBN-13 9781789343229
Length 202 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Gabor Szauer Gabor Szauer
Author Profile Icon Gabor Szauer
Gabor Szauer
Arrow right icon
View More author details
Toc

The stack

Lua and C are fundamentally different languages. They handle everything differently, such as memory management, types, and even function calls. This poses a problem when trying to integrate the two: how can we communicate between these two languages? This is where the Lua stack comes in.

The Lua stack is an abstract stack that sits between C and the Lua runtime. It's a Last In First Out (LIFO) stack. The idea is, both C and Lua know the rules of the stack and so long as they both obey the rules, they can coexist and communicate.

In general, you can think of the stack as a shared data storage mechanism. The way it normally works is that you push some values onto the stack in C. Then, you call a Lua function and hand control over to the Lua runtime. The runtime pops the values off the stack, and the function in question does its work and pushes the return value back...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime