Lua 🏷️
A C++ program that calls a Lua script (2025-04-21)
(Part 2 of my little series on “Lua”)
Alright, so after preparing Lua, here are
a few small first step on how to make use of this language within a C++ context.
Building Lua (on Windows, with Visual Studio) (2025-04-12)
(Part 1 of my little series on “Lua”)
Although one can get pre-built binaries of the Lua (programming language) interpreter, to me that seems to be just a semi-offical or lackluster way.
But luckily, building it yourself from source is very easy (especially with the help of this post from Dennis D. Spreen).
But luckily, building it yourself from source is very easy (especially with the help of this post from Dennis D. Spreen).
Calling a Lua/C++ function from C++/Lua code (2025-05-03)
(Part 3 of my little series on “Lua”)
Another post in my series on how to use C++ with Lua; this time it’s about calling a function of one language from code of the other language.
Feed