local myTable = {"Hello", "World", "Lua"} print(myTable[1]) --Outputs: "Hello" print(#myTable) --Outputs: 3 because we have 3 values in our table ...
確定! 回上一頁