Advertisement
LDDestroier

ComputerCraft Echo

Apr 3rd, 2015
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function echo(text)
  2.     echoText = ""
  3.     for a = 1, #text do
  4.         write(text[a] .. " ")
  5.         echoText = echoText .. text[a] .. " "
  6.     end
  7.     write("\n")
  8.     return echoText
  9. end
  10.  
  11. tArg = {...}
  12.  
  13. echo(tArg)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement