8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
so basically code is
const factory = new LuaFactory() const engine = await factory.createEngine(); const fn= await engine.doString(` return function () return '22', '33', {}; end; `); const result = fn(); // result is '22' while expected ['22','33', {}] // same there const result2 = await engine.doString(` return '11','22',{}; `); // result is '11' while expected ['11','22',{}]