This commit is contained in:
Crispy 2025-05-26 02:36:15 +02:00
parent fe086e3a0c
commit 1ff3cea4d6
29 changed files with 3206 additions and 79 deletions

9
computer/4/sendfile.lua Normal file
View file

@ -0,0 +1,9 @@
file = fs.open(arg[1],"r")
line = file.readLine()
while line do
print(line)
rednet.send(1,line)
line = file.readLine()
end
rednet.send(1,nil)
file.close()