i have the following problem: I need a global table which is the same in an API and a normal Program(something like this:
API:
function addtotable(value) table[#table + 1] = value endNormal program:
table = {}
os.loadAPI("/API")
API.addtotable("test")
print(table[1])
The output of this is nothing, but should be "test". I hope someone knows a solution.











