2
因此,我創建了一個Lua程序來跟蹤我父親購買的房產的需求,並且我想在帶有名稱的表格內製作表格。所以當我嘗試通過我創建的函數添加它時(我將顯示該函數),它預計)
「=」是。表名內部表
--The table I'm using to store everything
repair={}
--The function I'm using to create tables inside tables
function rAdd(name)
table.insert(repair, name)
end
--The function I'm using to add data to those tables
function tAdd(table, name)
table.insert(table, name)
end
rAdd(wall={})
tAdd(wall, "Due for paint job")
,當我嘗試添加它(rAdd(wall={})
),預計我結束通過)
的說法在「=」。請幫忙!
不能在值*函數調用分配給一個變量* 。你想在那裏做什麼?你想嵌套表嗎? 't = {f = {}}'?否則是'wall = {}; 'rAdd(「wall」)'你想要什麼? –