mirror of
https://github.com/open-goal/jak-project
synced 2026-06-24 01:41:29 -04:00
goalc: setup new repl server
This commit is contained in:
@@ -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))
|
||||
Reference in New Issue
Block a user