szymski

Code Downloader

Mar 6th, 2014
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. local download = http.get("http://szymski.zapto.org/code")
  2. local handle = download.readAll()
  3. download.close()
  4.  
  5. local file = fs.open("code","w")
  6. file.write(handle)
  7. file.close()
Add Comment
Please, Sign In to add comment