Sockets: Difference between revisions

Content deleted Content added
Nimrod -> Nim
Trizen (talk | contribs)
m Added Sidef language
Line 724: Line 724:
close(sock);
close(sock);
end func;</lang>
end func;</lang>

=={{header|Sidef}}==
<lang ruby>var host = Socket.gethostbyname('localhost');
var in = Socket.sockaddr_in(256, host);
var proto = Socket.getprotobyname('tcp');

var sock = Socket.open(Socket::AF_INET, Socket::SOCK_STREAM, proto);
sock.connect(in);
sock.send('hello socket world', 0, in);
sock.close;</lang>


=={{header|Slate}}==
=={{header|Slate}}==