Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local computer = require("computer")
- local fs = require("filesystem")
- local os = require("os")
- local serialization = require("serialization")
- input = nil
- exists = nil
- item_serial = nil
- exists = fs.exists("/home/ID/file.txt")
- if exists == true then
- fs.remove("/home/ID/file.txt")
- end
- items = {}
- input = io.read()
- items[1] = toadd
- items_serial = serialization.serialize(items)
- file = io.open("/home/ID/file.txt","w")
- file:write(items_serial)
- file:close()
- print("serialized")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement