Topaz has a robust LuaJIT integration feature. With just two interfaces, you can interface the Lua programming language to Delphi with relative ease.
Bind Delphi to Lua:
type
Color = class
class procedure AutoSetup(aLua: ILua);
class procedure Make(aContext: ILuaContext);
class procedure Makef(aContext: ILuaContext);
end;
class procedure Color.AutoSetup(aLua: ILua);
begin
RegColor(aLua, 'WHITE', 255, 255, 255, 255);
RegColor(aLua, 'RED', 255, 0, 0, 255);