Table Lua en chaîne

table.concat(list: table, sep: string, i: integer, j: integer)

local tbl = { 'Hello', 'World', 'this', 'is', 'awesome'}
print(table.concat(tbl, ' '))
-> Hello World this is awesome
Matteo