July 2018
Beginner
202 pages
5h 42m
English
The first step in working with the Lua stack is usually to push some data onto it. The Lua C API provides several functions to push different types of data onto the stack. The following functions can be used to push data:
When you push a string onto the stack, Lua creates its own copy of that string. As soon as the push operation is finished, you can modify ...