|
For my case, A were originally a simple lua function that call B, C, ... But, A should really belong inside the lib, so when I do lib = require 'lib', A can be called as lib.A Had not expected calling B shared the same lua stack. Is there a way to force calling B, C, ... with a new stack ? (like in lua ?) |