I was wondering if anyone can tell me how to print anything in a table(temptable
) in the same line, without creating a new one for each item in it.
Script I've tried:
1 | local temptable = { "Test" , "Test2" } |
2 | for _,v in pairs (temptable) do |
3 | print (v) |
4 | end |
But that does:
1 | Test |
2 | Test 2 |
Instead, I want it to do:
1 | Test Test 2 |
Any suggestions on how I could accomplish this? Any help appreciated.
A nice, built-in Lua function for working with tables: unpack (or table.unpack in Lua 5.3)
1 | table = { 'as' , 'df' } ; |
2 |
3 | print ( unpack (table)); |