Example: lua loop through table local Table = {'Cat', 'Dog', 'Bird'} for i, v in pairs(Table) do print(i .. ' ' .. v) end.
確定! 回上一頁