Open
Description
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',{}]
Metadata
Metadata
Assignees
Labels
No labels