SHOW:
|
|
- or go back to the newest paste.
1 | function echo(text) | |
2 | - | for a = 1, #tArg do |
2 | + | echoText = "" |
3 | - | write(tArg[a] .. " ") |
3 | + | for a = 1, #text do |
4 | write(text[a] .. " ") | |
5 | - | write("\n") |
5 | + | echoText = echoText .. text[a] .. " " |
6 | end | |
7 | write("\n") | |
8 | return echoText | |
9 | end | |
10 | ||
11 | tArg = {...} | |
12 | ||
13 | echo(tArg) |