Advertisement
Derek1017

Test

Jun 19th, 2015
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. local response = http.get( "http://guudelp.com/logsimple.cgi" )
  2. if response then
  3. local sResponse = response.readAll()
  4. response.close()
  5. print ( sResponse )
  6. end
  7.  
  8. looped (not working)
  9.  
  10. for nil=1, 10000 do
  11. local response = http.get( "http://guudelp.com/logsimple.cgi" )
  12. if response then
  13. local sResponse = response.readAll()
  14. response.close()
  15. print ( sResponse )
  16. end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement