-
From the documentation (emphasis added)..."Pallene functions can be called from Lua and Pallene can call Lua functions as well." I would like to call a Lua function (for instance, Is there an idiomatic way to call Lua functions from Pallene? Many thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Currently this can be a bit difficult because we don't have require. We're working on implementing require, but it's not ready yet. The workaround that is possible for now is that you can have Lua call a Pallene function, passing a Lua function as an argument. Or even passing a table of functions. |
Beta Was this translation helpful? Give feedback.
Currently this can be a bit difficult because we don't have require. We're working on implementing require, but it's not ready yet.
The workaround that is possible for now is that you can have Lua call a Pallene function, passing a Lua function as an argument. Or even passing a table of functions.