Thalassicus
Bytes and Nibblers
I just want to check... arguments cannot be altered in lua, right? In other words this sort of simplification isn't possible:
Code:
function Init(tableName)
if not tableName then
tableName = {}
return true
end
return false
end
if Init(Game.SomeNewTable) then
...