|
| 22 Jul 2014 03:34 AM |
t = {"Hello",",","Hello"}
i can print this table like this print(table.concat(t,"")) -- Hello,Hello
but i want to make it multi line so it will print any idea how could i do that ??
Hello , Hello
local text =[[
]] for i,v in pairs(t)do text = text ..v end print(text) |
|
|
| Report Abuse |
|
|
| 22 Jul 2014 03:35 AM |
btw second script dosent work just a example
what i want to know is if there is any posible way to put text in second line |
|
|
| Report Abuse |
|
cntkillme
|
  |
| Joined: 07 Apr 2008 |
| Total Posts: 44956 |
|
|
| 22 Jul 2014 03:37 AM |
| print(table.concat(t, "\n")) |
|
|
| Report Abuse |
|
|
| 22 Jul 2014 03:42 AM |
| oh patter i should learn them never used them befor xd |
|
|
| Report Abuse |
|