Demonstrate how to embed a lua interpreter in C code, expose a C-defined function to Lua script, evaluate a Lua script, call a C-defined function from Lua, and call a Lua-defined function from C (the host).
In this example, we want the mood to be set by a Lua script. Here is mood.lua:
-- Get versi...