RosettaCodeData/Task/Sockets/TXR/sockets.txr
2016-12-05 22:15:40 +01: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"))