Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fs.delete("/void/void")
- function downloadFile(path, url)
- print("Downloading: " .. path)
- data = http.get(url).readAll()
- file = assert(io.open(path, "w"))
- file:write(data)
- file:close()
- end
- downloadFile("/void/void", "https://pastebin.com/raw/Z9d6fqRN")
Add Comment
Please, Sign In to add comment