goalc: setup new repl server

This commit is contained in:
Tyler Wilding
2022-04-26 21:33:20 -04:00
parent fe36687366
commit c40bb2ec32
4 changed files with 71 additions and 48 deletions
+6
View File
@@ -0,0 +1,6 @@
import socket
clientSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM);
clientSocket.connect(("127.0.0.1", 8181))
print(clientSocket)
num_sent = clientSocket.send(b'\x01\x02\x03\x04')
print("Sent {} bytes".format(num_sent))