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

13 lines
264 B
Text

use Net;
bundle Default {
class Socket {
function : Main(args : String[]) ~ Nil {
socket := TCPSocket->New("localhost", 256);
if(socket->IsOpen()) {
socket->WriteString("hello socket world");
socket->Close();
}
}
}
}