Posted 10 July 2014 - 11:38 PM
So I was trying to do a filesharing program using textutils.serialize(). Here is the code for the sender:
And here is the code for the receiver:
But I get the following error at the receiver:
No such program <_</>
But I don't know why
rednet.open("right")
write("Enter file name: ")
fName = read()
copy = textutils.serialize(fName)
rednet.send(13, copy)
And here is the code for the receiver:
rednet.open("left")
senderId, program = rednet.receive()
myCopy = textutils.unserialize(program)
shell.run(myCopy)
But I get the following error at the receiver:
No such program <_</>
But I don't know why