clean up uneeded files

This commit is contained in:
2026-07-10 11:42:30 +10:00
parent 5f78bf745a
commit 5d9bdb5b21
3 changed files with 0 additions and 41 deletions

View File

@@ -1,16 +0,0 @@
import socket
import io
func main() -> int {
socket.Socket s = new socket.Socket(socket.Family.INET, socket.Type.STREAM, 0)
s.connect("127.0.0.1", 2000)
s.send("hi!")
small byte = s.readByte()
io.println("%c", byte)
s.close()
return 0
}

View File

@@ -1,21 +0,0 @@
import socket
import io
func main() -> int {
socket.Socket s = new socket.Socket(socket.Family.INET, socket.Type.STREAM, 0)
s.bind("127.0.0.1", 2000)
s.listen(10)
socket.Socket client = s.accept()
io.println("Connection received!")
string response = client.read(1024)
io.println("Response: %s", response)
client.sendByte('a')
s.close()
return 0
}

View File

@@ -1,4 +0,0 @@
import socket
socket.socket(socket.AF_INET, socket.SOCK_STREAM)