Jump to content

Sockets: Difference between revisions

212 bytes added ,  14 years ago
no edit summary
m (→‎{{header|C}}: Fixed small error)
No edit summary
Line 389:
con->close();
}</lang>
 
=={{header|Purebasic}}==
<lang Purebasic>
InitNetwork()
ConnectionID = OpenNetworkConnection("localhost", 256)
SendNetworkString(ConnectionID, "hello socket world")
CloseNetworkConnection(ConnectionID)
</lang>
 
 
=={{header|Python}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.