Calling Lua from Common Lisp (with eev and CFFI - 2025)1. For the impatientIn the video we are going to learn how to do this in the SBCL REPL and in the Sly REPL, with a test block: This is the log of the part in blue in the screenshots, in the Sly REPL:
The strings in this color are both Lua strings and Common Lisp strings; technically they are "foreign strings" (at some point). 2. IntroductionWhen I tried to learn how to use the CFFI I looked for examples, and the first page that I found that had an example that was easy to run was this one:
After understanding it I rewrote it, kept only its most basic parts, and put its three parts - the parts in C, shell, and in Common Lisp, rewritten - into a single file: hello2.c. I got this, that was neat, but not interesting enough. And then I tried to use CFFI to call Lua. I wanted to start with a prototype with no error checking at all, like in my Emacs<->Lua bridge, in which the Emacs module in C sends to Lua a string that is a Lua program, and that must return a string when executed... like this:
in which the output of the last line is the string "ab" - in Lua `..' is the concatenation operator. 3. Trying itIf you have all the dependencies installed then you can try
4. The videoIn this page I will explain a way to try CFFI that should be even trivial to run if you |