a working internet modem that only reads

This commit is contained in:
minjaesong
2022-09-22 16:26:04 +09:00
parent cab2699794
commit e905b3ace8
16 changed files with 367 additions and 34 deletions

View File

@@ -0,0 +1,10 @@
let fout = files.open("FBIPF")
let fin = files.open(_G.shell.resolvePathInput(exec_args[1]).full)
let ipfRead = fin.bread()
println(`Input file: ${ipfRead.length} bytes`)
fout.bwrite(ipfRead)
fin.close()
fout.close()