Lua 🏷️


or

A C++ program that calls a Lua script (2025-04-21)
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 5.4.7 on Windows 10 with Visual Studio 2022 (2025-04-12)
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).
Calling a Lua/C++ function from C++/Lua code (2025-05-03)
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.