willyb321

test2

May 9th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. a = "testing "
  2. b = "lua"
  3. c = a .. b
  4. local answer
  5.  
  6.  
  7. function idunno()
  8. repeat
  9. print(a .. b)
  10.   io.write("continue with this spam? (y/n)? ")
  11.   io.flush()
  12.   answer = io.read()
  13. until answer == "n"
  14.  
  15. end
  16. idunno()
Add Comment
Please, Sign In to add comment