Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function echo(text)
- echoText = ""
- for a = 1, #text do
- write(text[a] .. " ")
- echoText = echoText .. text[a] .. " "
- end
- write("\n")
- return echoText
- end
- tArg = {...}
- echo(tArg)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement