RosettaCodeData/Task/Sockets/TXR/sockets.txr
2023-07-01 13:44:08 -04:00

4 lines
175 B
Text

(let* ((server (first (getaddrinfo "localhost" 256)))
(sock (open-socket server.family sock-stream)))
(sock-connect sock server)
(put-string "hello socket world"))