In my lua script, it requires another lua module by following statement:
require 'another'
In my another lua module, the first line of code is:
module(..., )
However, it looks like that Luaj does not has 'module' function defined or not support it at all in the returned global object. I am using luaj 3.0 belter 2. Does it support the module function in luaj? If so, how to use it?
Thanks in advance!